|
|
@@ -52,7 +52,7 @@ public class UniversalController extends BaseRESTfulController {
|
|
|
|
|
|
@ApiModelProperty(value = "边输边查物资类型")
|
|
|
@GetMapping("/getMaterialTypeByLike")
|
|
|
- public RESTfulResult getMaterialTypeByLike(String index,String id) {
|
|
|
+ public RESTfulResult getMaterialTypeByLike(String index,@RequestParam(required = false) List<String> id) {
|
|
|
Map<String,Object> map = new HashMap<>();
|
|
|
map.put("index",index);
|
|
|
map.put("id",id);
|
|
|
@@ -62,7 +62,7 @@ public class UniversalController extends BaseRESTfulController {
|
|
|
|
|
|
@ApiModelProperty(value = "边输边查公司单位")
|
|
|
@GetMapping("/getCompanyMesByLike")
|
|
|
- public RESTfulResult getCompanyMesByLike(String index,String companyType,String id) {
|
|
|
+ public RESTfulResult getCompanyMesByLike(String index,String companyType,@RequestParam(required = false) List<String> id) {
|
|
|
Map<String,Object> map = new HashMap<>();
|
|
|
map.put("index",index);
|
|
|
map.put("companyType",companyType);
|
|
|
@@ -74,7 +74,7 @@ public class UniversalController extends BaseRESTfulController {
|
|
|
|
|
|
@ApiModelProperty(value = "边输边查环保标准")
|
|
|
@GetMapping("/getEmissionStandardByLike")
|
|
|
- public RESTfulResult getEmissionStandardByLike(String index,String id) {
|
|
|
+ public RESTfulResult getEmissionStandardByLike(String index,@RequestParam(required = false) List<String> id) {
|
|
|
Map<String,Object> map = new HashMap<>();
|
|
|
map.put("index",index);
|
|
|
map.put("id",id);
|
|
|
@@ -84,7 +84,7 @@ public class UniversalController extends BaseRESTfulController {
|
|
|
|
|
|
@ApiModelProperty(value = "边输边查作业点")
|
|
|
@GetMapping("/getOperationPointByLike")
|
|
|
- public RESTfulResult getOperationPointByLike(String index,String operationPointType,String id) {
|
|
|
+ public RESTfulResult getOperationPointByLike(String index,String operationPointType,@RequestParam(required = false) List<String> id) {
|
|
|
Map<String,Object> map = new HashMap<>();
|
|
|
map.put("index",index);
|
|
|
map.put("operationPointType",operationPointType);
|
|
|
@@ -95,7 +95,7 @@ public class UniversalController extends BaseRESTfulController {
|
|
|
|
|
|
@ApiModelProperty(value = "边输边查人员")
|
|
|
@GetMapping("/getPersonnelByLike")
|
|
|
- public RESTfulResult getPersonnelByLike(String index,String id) {
|
|
|
+ public RESTfulResult getPersonnelByLike(String index,@RequestParam(required = false) List<String> id) {
|
|
|
Map<String,Object> map = new HashMap<>();
|
|
|
map.put("index",index);
|
|
|
map.put("id",id);
|
|
|
@@ -105,7 +105,7 @@ public class UniversalController extends BaseRESTfulController {
|
|
|
|
|
|
@ApiModelProperty(value = "边输岗位信息")
|
|
|
@GetMapping("/getJobInfosByLike")
|
|
|
- public RESTfulResult getrmsrmsjobinfosBylike(String index,String id) {
|
|
|
+ public RESTfulResult getrmsrmsjobinfosBylike(String index,@RequestParam(required = false) List<String> id) {
|
|
|
Map<String,Object> map = new HashMap<>();
|
|
|
map.put("index",index);
|
|
|
map.put("id",id);
|