fix
Helius
2021-11-12 f6c9956e1fd3e21c342e4840b715a7465814f3b0
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;