LsStationRouteController.java
2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package com.bsth.controller;
import com.bsth.common.ResponseCode;
import com.bsth.entity.LsStationRoute;
import com.bsth.entity.StationRoute;
import com.bsth.service.LsStationRouteService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* @author Hill
*/
@RestController
@RequestMapping("/api/lsstationroute")
public class LsStationRouteController extends BaseController<LsStationRoute, Integer> {
@Autowired
private LsStationRouteService lsStationRouteService;
private static final Logger log = LoggerFactory.getLogger(LsStationRouteController.class);
@RequestMapping(value = "/findAllByParams", method = RequestMethod.GET)
public Iterable<LsStationRoute> findAllByParams(@RequestParam Map<String, Object> params) {
return lsStationRouteService.findAllByParams(params);
}
/**
* @param id
* @throws
* @Description: TODO(批量撤销站点)
*/
@RequestMapping(value = "/destroy", method = RequestMethod.POST)
public Map<String, Object> destroy(Integer id) {
Map<String, Object> result = new HashMap<>();
try {
lsStationRouteService.batchDestroy(Arrays.asList(id));
result.put("status", ResponseCode.SUCCESS);
} catch (Exception e) {
result.put("status", ResponseCode.ERROR);
result.put("msg", e.getMessage());
log.error("", e);
}
return result;
}
/**
* @param ids
* @throws
* @Description: TODO(批量撤销站点)
*/
@RequestMapping(value = "/batchDestroy", method = RequestMethod.POST)
public Map<String, Object> batchDestroy(@RequestParam(value = "ids[]") List<Integer> ids) {
Map<String, Object> result = new HashMap<>();
try {
lsStationRouteService.batchDestroy(ids);
result.put("status", ResponseCode.SUCCESS);
} catch (Exception e) {
result.put("status", ResponseCode.ERROR);
result.put("msg", e.getMessage());
log.error("", e);
}
return result;
}
@RequestMapping(method = RequestMethod.POST)
@Override
public Map<String, Object> save(LsStationRoute stationRoute) {
Map<String, Object> result = new HashMap<>();
try {
lsStationRouteService.save(stationRoute);
result.put("status", ResponseCode.SUCCESS);
} catch (Exception e) {
result.put("status", ResponseCode.ERROR);
result.put("msg", e.getMessage());
log.error("", e);
}
return result;
}
}