|
@@ -2,8 +2,13 @@ package cn.fastfun.controller.param;
|
|
|
|
|
|
import com.bridge.dto.QueryParam;
|
|
|
import com.bridge.dto.QueryParamExp;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
import org.springframework.util.StringUtils;
|
|
|
|
|
|
+@Setter
|
|
|
+@Getter
|
|
|
public class DeviceQueryParam extends QueryParam {
|
|
|
|
|
|
public void setSn(String sn) {
|
|
@@ -21,4 +26,7 @@ public class DeviceQueryParam extends QueryParam {
|
|
|
addParam(QueryParamExp.like("batchNum", "%".concat(batchNum).concat("%")));
|
|
|
}
|
|
|
|
|
|
+ @ApiModelProperty(value = "入库状态", name = "inStorage", example = "0:未入库,1:已入库")
|
|
|
+ private Integer inStorage;
|
|
|
+
|
|
|
}
|