|
@@ -2179,6 +2179,18 @@ public class AMScontroller{
|
|
|
return amsFeign.getNotice(mapValue);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "查询日志信息", notes = "条件查询")
|
|
|
+ @PostMapping("/selectAllLog")
|
|
|
+ public RESTfulResult selectAllLog(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ Integer apiId){
|
|
|
+ if(mapValue==null){
|
|
|
+ mapValue=new HashMap<>();
|
|
|
+ }
|
|
|
+ return amsFeign.selectAllLog(mapValue,pageNum,pageSize,apiId);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "查询规格型号是否正确")
|
|
|
@PostMapping("/queryFormat")
|
|
|
RESTfulResult queryFormat(@RequestBody List<Map<String,Object>> mapList){
|