|
@@ -19,30 +19,26 @@ import java.io.Serializable;
|
|
|
@ApiModel
|
|
|
public class SaveQrRepertoryColumnReq implements Serializable {
|
|
|
|
|
|
- @ApiModelProperty("码格式id")
|
|
|
- private Long qrFormatId;
|
|
|
+ @ApiModelProperty("码格式id")
|
|
|
+ private Long qrFormatId;
|
|
|
|
|
|
- @ApiModelProperty("克隆列 -1:未克隆 >=0:克隆了哪列,下标从0开始")
|
|
|
- private Integer cloneColumn;
|
|
|
+ @ApiModelProperty("克隆列 -1:未克隆 >=0:克隆了哪列,下标从0开始")
|
|
|
+ private Integer cloneColumn;
|
|
|
|
|
|
- @ApiModelProperty("排序号")
|
|
|
- private Integer sortNumber;
|
|
|
+ @ApiModelProperty("排序号")
|
|
|
+ private Integer sortNumber;
|
|
|
|
|
|
- @NotNull(message = "列别名为空")
|
|
|
- @Pattern(regexp = "^[a-zA-Z-z0-9\\u4e00-\\u9fa5]{1,20}$", message = "列别名限制20字内的汉字or字母or数字")
|
|
|
- @ApiModelProperty("别名")
|
|
|
- private String alias;
|
|
|
+ @NotNull(message = "列别名为空")
|
|
|
+ @Pattern(regexp = "^[a-zA-Z-z0-9\\u4e00-\\u9fa5]{1,20}$", message = "列别名限制20字内的汉字or字母or数字")
|
|
|
+ @ApiModelProperty("别名")
|
|
|
+ private String alias;
|
|
|
|
|
|
- @NotNull(message = "拆分数量为空")
|
|
|
- @ApiModelProperty("拆分数量")
|
|
|
- private Integer splitNum;
|
|
|
+ @NotNull(message = "URL格式为空")
|
|
|
+ @ApiModelProperty("url格式类型 0-非URL 1-系统URL 2-部门URL")
|
|
|
+ private Integer urlType;
|
|
|
|
|
|
- @NotNull(message = "URL格式为空")
|
|
|
- @ApiModelProperty("url格式类型 0-非URL 1-系统URL 2-部门URL")
|
|
|
- private Integer urlType;
|
|
|
-
|
|
|
- @Size(max = 50, message = "备注长度超过50")
|
|
|
- @ApiModelProperty("备注")
|
|
|
- private String remark;
|
|
|
+ @Size(max = 50, message = "备注长度超过50")
|
|
|
+ @ApiModelProperty("备注")
|
|
|
+ private String remark;
|
|
|
|
|
|
}
|