Browse Source

设置点位

laoyao 3 năm trước cách đây
mục cha
commit
6c9f60ff2e

+ 0 - 3
imcs-admin-boot/imcs-business-entity/src/main/java/com/github/zuihou/business/productionReadyCenter/dto/PlateSaveDTO.java

@@ -42,7 +42,6 @@ public class PlateSaveDTO implements Serializable {
      * 托盘id
      */
     @ApiModelProperty(value = "托盘id")
-    @Length(max = 4, message = "托盘id长度不能超过4")
     private Long trayId;
 
     /**
@@ -74,14 +73,12 @@ public class PlateSaveDTO implements Serializable {
      * 可放托盘数量
      */
     @ApiModelProperty(value = "可放托盘数量")
-    @Length(max = 4, message = "可放托盘数量长度不能超过4")
     private Long number;
 
     /**
      * 排序(升序)
      */
     @ApiModelProperty(value = "排序(升序)")
-    @Length(max = 4, message = "排序(升序)长度不能超过4")
     private Long weight;
 
 }