| | |
| | | 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; |
| | |
| | | `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; |
| | |
| | | private String backImg; |
| | | private Integer deleteFlag; |
| | | private Integer voteCnt; |
| | | private Integer addState; |
| | | |
| | | |
| | | } |