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
package cc.mrbird.febs.mall.entity;
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("clothes_social_comment")
public class ClothesSocialComment extends BaseEntity {
    /**
     *
     `member_id` bigint(20) DEFAULT NULL,
     `social_id` bigint(20) DEFAULT NULL COMMENT '来源ID',
     `comment_id` bigint(20) DEFAULT NULL,
     `parent_id` bigint(20) DEFAULT NULL COMMENT '来源选项ID',
     `comment` text COMMENT '评论',
     `show_state` int(11) DEFAULT '0' COMMENT '展示状态 1:显示 0:隐藏',
     */
 
    private Long memberId;
    private Long socialId;
    private Long commentId;
    private Long parentId;
    private String comment;
    private Integer showState;
}