lmstack 3 gadi atpakaļ
vecāks
revīzija
75da55cee3

+ 1 - 0
src/main/java/cn/fastfun/controller/api/ApiAppDeviceLogController.java

@@ -305,6 +305,7 @@ public class ApiAppDeviceLogController {
         if (!StringUtils.isEmpty(param)) {
             query.addParam(QueryParamExp.like("sn", "%".concat(param.getSn()).concat("%")));
         }
+        query.addParam(QueryParamExp.eq("status", 3));
         Page<AppDevice> devicePage = appDeviceService.findByParam(query);
         return new ApiPageDTO(null, devicePage);
     }

+ 1 - 1
src/main/java/cn/fastfun/controller/param/DeviceBatchQueryParam.java

@@ -12,7 +12,7 @@ import org.springframework.util.StringUtils;
 @Getter
 public class DeviceBatchQueryParam extends QueryParam {
 
-    @ApiModelProperty(value = "批次号", name = "batchNum", required = true)
+    @ApiModelProperty(value = "", name = "batchNum", required = true)
     private String batchNum;
 
 }