|
|
@@ -10,6 +10,7 @@ import com.unis.vis.service.SysDeptService;
|
|
10
|
10
|
import com.unis.vis.service.SysTreeDictService;
|
|
11
|
11
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
12
|
12
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
13
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
13
|
14
|
import org.springframework.web.bind.annotation.RestController;
|
|
14
|
15
|
|
|
15
|
16
|
import javax.annotation.Resource;
|
|
|
@@ -58,8 +59,10 @@ public class VisController {
|
|
58
|
59
|
|
|
59
|
60
|
/*物资调用情况*/
|
|
60
|
61
|
@GetMapping("/getMaterialCallSituation")
|
|
61
|
|
- public List<OutboundMaterialInfo> getMaterialCallSituation() {
|
|
62
|
|
- List<OutboundMaterialInfo> list = outboundMaterialInfoService.getMaterialCallSituation();
|
|
|
62
|
+ public List<OutboundMaterialInfo> getMaterialCallSituation(@RequestParam("type") String type,
|
|
|
63
|
+ @RequestParam("action")String action) {
|
|
|
64
|
+
|
|
|
65
|
+ List<OutboundMaterialInfo> list = outboundMaterialInfoService.getMaterialCallSituation(type,action);
|
|
63
|
66
|
return list;
|
|
64
|
67
|
}
|
|
65
|
68
|
/*地图点位*/
|