|
@@ -2,11 +2,16 @@ package com.abi.qms.platform.dto.req;
|
|
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
|
+import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
|
+import lombok.NoArgsConstructor;
|
|
|
|
+import lombok.ToString;
|
|
|
|
|
|
import javax.validation.constraints.NotEmpty;
|
|
import javax.validation.constraints.NotEmpty;
|
|
import javax.validation.constraints.NotNull;
|
|
import javax.validation.constraints.NotNull;
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
|
+import java.util.List;
|
|
|
|
|
|
/**
|
|
/**
|
|
* @author: fangxinjian
|
|
* @author: fangxinjian
|
|
@@ -43,4 +48,25 @@ public class SaveBoxCodeFormatReq implements Serializable {
|
|
@ApiModelProperty(value = "备注")
|
|
@ApiModelProperty(value = "备注")
|
|
private String remark;
|
|
private String remark;
|
|
|
|
|
|
|
|
+ @Schema(name = "拆分数量列表")
|
|
|
|
+ private List<SplitBean> splitBeanList;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 拆分数量 BEAN
|
|
|
|
+ */
|
|
|
|
+ @Data
|
|
|
|
+ @NoArgsConstructor
|
|
|
|
+ @AllArgsConstructor
|
|
|
|
+ @ToString
|
|
|
|
+ @Schema(name = "SaveBoxCodeFormatReq_SplitBean")
|
|
|
|
+ public static class SplitBean implements Serializable {
|
|
|
|
+
|
|
|
|
+ @Schema(name = "码库列id")
|
|
|
|
+ private Long qrRepertoryColumnId;
|
|
|
|
+
|
|
|
|
+ @Schema(name = "拆分数量")
|
|
|
|
+ private Integer splitNum;
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|