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;
|
}
|