mg
2022-10-12 3f9ebf19e687c33287b0eaec64d4564a212f57db
ycl-platform/src/main/java/com/ycl/entity/message/MessageColumn.java
@@ -10,7 +10,6 @@
import lombok.EqualsAndHashCode;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.util.Date;
/**
@@ -48,7 +47,7 @@
     */
    @TableField("column_number")
    @ApiModelProperty(value = "栏目编码")
    @NotBlank(message = "渠道码为空")
    @NotBlank(message = "栏目编码为空")
    private String columnNumber;
    /**
@@ -56,22 +55,21 @@
     */
    @TableField("notice_amount")
    @ApiModelProperty(value = "公告数")
    private Integer notice_amount;
    private Integer noticeAmount;
    /**
     * 是否显示
     */
    @TableField("is_show")
    @ApiModelProperty(value = "是否显示")
    @NotNull(message = "是否显示为空")
    private String isShow;
    private Integer isShow;
    /**
     * 描述
     */
    @TableField("desc")
    @TableField("description")
    @ApiModelProperty(value = "描述")
    private String desc;
    private String description;
    /**
     * 创建人