|
|
@@ -50,6 +50,13 @@ public class UniversalController extends BaseRESTfulController {
|
|
|
@Autowired
|
|
|
private ImageFileUtils imageFileUtils;
|
|
|
|
|
|
+ @ApiModelProperty(value = "边输边查物资类型")
|
|
|
+ @GetMapping("/getMaterialTypeByLike")
|
|
|
+ public RESTfulResult getMaterialTypeByLike(String index) {
|
|
|
+ List<Map<String, Object>> list = universalMapper.getMaterialTypeByLike(index == null ? "" : index);
|
|
|
+ return success(list);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiModelProperty(value = "边输边查公司单位")
|
|
|
@GetMapping("/getCompanyMesByLike")
|
|
|
public RESTfulResult getCompanyMesByLike(String index,String companyType) {
|
|
|
@@ -60,6 +67,7 @@ public class UniversalController extends BaseRESTfulController {
|
|
|
return success(list);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
@ApiModelProperty(value = "边输边查环保标准")
|
|
|
@GetMapping("/getEmissionStandardByLike")
|
|
|
public RESTfulResult getEmissionStandardByLike(String index) {
|