Administrator
3 days ago 267c06a5864bb617b1ff0ea82210346bf5573f5f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cc.mrbird.febs.mall.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("happy_social_circle_category")
public class HappySocialCircleCategory extends BaseEntity {
    /**
     *
     `name` varchar(500) DEFAULT NULL,
     `order_cnt` int(11) DEFAULT '0' COMMENT '排序',
     `hot_state` int(11) DEFAULT '0' COMMENT '是否推荐到首页 0-不推荐 1-推荐',
     `state` int(11) DEFAULT NULL COMMENT '状态 0-未开启 1-已开启',
     `DELETE_FLAG` int(11) DEFAULT '0' COMMENT '删除标识 0-未删除 1-已删除',
     */
    private String name;
    private Integer orderCnt;
    private Integer hotState;
    private Integer state;
    private Integer deleteFlag;
}