Helius
2022-03-14 b5960ac13f8d67c0baf8f23ffb2e24de1494cbf7
zq-erp/src/main/java/com/matrix/system/app/dto/LabelDto.java
@@ -2,6 +2,7 @@
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.hibernate.validator.constraints.Length;
/**
 * @author wzy
@@ -10,6 +11,7 @@
@ApiModel(value = "LabelDto", description = "添加标签接收参数接收类")
public class LabelDto {
    @Length(max = 10, message = "不能超过10")
    @ApiModelProperty(value = "标签内容", example = "123")
    private String label;