fix
Helius
2021-11-08 9c791d431038fe79a111805762ee2f42c96b51c5
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;