|
|
|
@ -3,6 +3,8 @@ package cn.iocoder.yudao.module.configure.controller.admin.tracetemplate.vo;
|
|
|
|
|
import lombok.*;
|
|
|
|
|
import java.util.*;
|
|
|
|
|
import io.swagger.annotations.*;
|
|
|
|
|
import org.hibernate.validator.constraints.Length;
|
|
|
|
|
|
|
|
|
|
import javax.validation.constraints.*;
|
|
|
|
|
|
|
|
|
|
@ApiModel("管理后台 - 溯源模板创建 Request VO")
|
|
|
|
@ -10,6 +12,8 @@ import javax.validation.constraints.*;
|
|
|
|
|
public class TraceTemplateCreateReqVO {
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "模板名称")
|
|
|
|
|
@NotBlank(message = "模板名称不能为空")
|
|
|
|
|
@Length(max = 32, message = "模板名称最长32个字符")
|
|
|
|
|
private String templateName;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "商品编码", required = true)
|
|
|
|
|