KKSU
2025-04-17 074fc7dcdde6c9501e0f6ee8b247205c2f427e79
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
51
52
53
54
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_activity_option")
public class HappyActivityOption extends BaseEntity {
    /**
     *
     `ID` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
     `member_id` bigint(20) DEFAULT NULL COMMENT '用户ID',
     `activity_id` bigint(20) DEFAULT NULL COMMENT '活动ID',
     `order_cnt` int(11) DEFAULT NULL COMMENT '排序',
     `option_name` varchar(256) NOT NULL COMMENT '选项名称',
     `rank` int(11) DEFAULT NULL COMMENT '排名',
     `likes_cnt` int(11) DEFAULT '0' COMMENT '点赞数量',
     `image` varchar(500) DEFAULT NULL COMMENT '投票选项图片 URL',
     `video_url` varchar(500) DEFAULT NULL COMMENT '投票选项视频URL',
     `description` text COMMENT '选项描述',
     `state` int(11) DEFAULT '0' COMMENT '是否审核 0.未审核 1.审核成功 2.拒绝',
     `real_name` varchar(256) DEFAULT NULL COMMENT '注册名称',
     `mobile_phone` varchar(64) DEFAULT NULL COMMENT '手机',
     `province` varchar(128) DEFAULT NULL COMMENT '省',
     `city` varchar(128) DEFAULT NULL COMMENT '市',
     `address` varchar(512) DEFAULT NULL COMMENT '地址',
     `email` varchar(256) DEFAULT '' COMMENT '邮箱',
     `sex` int(8) DEFAULT NULL COMMENT '性别 0-女1-男  2-保密',
     `hobby` varchar(256) DEFAULT NULL COMMENT '爱好',
     `mcn_state` int(8) DEFAULT NULL COMMENT '是否签约mcn机构 0否 1是',
     `DELETE_FLAG` int(11) DEFAULT '0' COMMENT '删除标识 0-未删除 1-已删除',
     */
    private Long memberId;
    private Long activityId;
    private Integer orderCnt;
    private String optionName;
    private Integer rank;
    private Integer likesCnt;
    private String image;
    private String videoUrl;
    private String description;
    private Integer state;
    private String realName;
    private String mobilePhone;
    private String province;
    private String city;
    private String address;
    private String email;
    private Integer sex;
    private String hobby;
    private Integer mcnState;
    private Integer deleteFlag;
}