Administrator
2025-08-04 a34b9a6418a8874dc0851cb4e19d189339dd5133
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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;
 
import java.util.List;
 
@Data
@TableName("clothes_social")
public class ClothesSocial 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',
     `del_flag` int(11) DEFAULT '0' COMMENT '删除标识 0-未删除 1-已删除',
     `state` int(11) DEFAULT '0' COMMENT '状态 0-不展示 1-展示',
     `order_cnt` int(11) DEFAULT '0' COMMENT '排序',
     `comment_state` int(11) DEFAULT '0' COMMENT '是否允许评论 0-不允许 1-允许',
     `like_cnt` int(11) DEFAULT '0',
     `collect_cnt` int(11) DEFAULT '0',
     */
    private Long memberId;
    private String name;
    private String content;
    private String indexFile;
    private Long categoryId;
    private Integer delFlag;
    private Integer state;
    private Integer hotState;
    private Integer orderCnt;
    private Integer commentState;
    private Integer likeCnt;
    private Integer collectCnt;
 
    @TableField(exist = false)
    private String thumbs;
 
    @TableField(exist = false)
    private Long typeId;
 
    @TableField(exist = false)
    private List<String> images;
 
 
}