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 lombok.Data;
|
|
@Data
|
@TableName("happy_social_circle")
|
public class HappySocialCircle extends BaseEntity {
|
/**
|
*
|
`member_id` bigint(20) DEFAULT NULL COMMENT '用户ID',
|
`name` varchar(500) DEFAULT NULL COMMENT '标题',
|
`content` text COMMENT '内容',
|
`index_file` varchar(500) DEFAULT NULL COMMENT '首页显示',
|
`category_id` bigint(20) DEFAULT NULL COMMENT '分类ID',
|
`DELETE_FLAG` int(11) DEFAULT '0' COMMENT '删除标识 0-未删除 1-已删除',
|
`state` int(11) DEFAULT '0' COMMENT '状态 0-未开启 1-已开启',
|
`hot_state` int(11) DEFAULT '0' COMMENT '是否推荐到首页 0-不推荐 1-推荐',
|
`order_cnt` int(11) DEFAULT '0' COMMENT '排序',
|
*/
|
private Long memberId;
|
@TableField(exist = false)
|
private String memberName;
|
private String name;
|
private String content;
|
private String indexFile;
|
private Long categoryId;
|
@TableField(exist = false)
|
private String categoryName;
|
private Integer deleteFlag;
|
private Integer state;
|
private Integer hotState;
|
private Integer orderCnt;
|
}
|