Administrator
2025-04-23 9244eda73db2445b4fd298339652deb16e2e72ef
src/main/java/cc/mrbird/febs/mall/entity/HappyActivity.java
@@ -1,6 +1,7 @@
package cc.mrbird.febs.mall.entity;
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
@@ -36,8 +37,11 @@
     `back_img` varchar(500) DEFAULT NULL COMMENT '背景图片',
     `DELETE_FLAG` int(11) DEFAULT '0' COMMENT '删除标识 0-未删除 1-已删除',
     `vote_cnt` int(11) DEFAULT NULL COMMENT '投票数量',
     `add_state` int(11) DEFAULT '0' COMMENT '是否允许报名 0-不允许 1-允许',
     */
    private Long categoryId;
    @TableField(exist = false)
    private String categoryName;//
    private String code;
    private String name;
    private Integer type;
@@ -61,6 +65,7 @@
    private String backImg;
    private Integer deleteFlag;
    private Integer voteCnt;
    private Integer addState;
}