manailin
2021-12-08 a22c110d080fe4387cd7b29a9bd36a727eb5944a
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package com.panzhihua.service_community.model.dos;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * title: ComActActRegistDO  社区》活动》活动签到表实体类
 * projectName 成都呐喊信息技术有限公司-智慧社区项目
 * description: 社区》活动》活动签到表实体类
 *
 * @author txb
 * @date 2021/8/24 10:21
 */
 
@Data
@TableName("com_act_act_regist")
public class ComActActRegistDO implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
    * 自增id
    */
    @TableId(type = IdType.INPUT)
    private Long id;
 
    /**
    * 所属活动id
    */
    private Long activityId;
 
    /**
    * 用户id, 和用户信息表的相关id关联
    */
    private Long userId;
 
    /**
    * 签到时间
    */
    @TableField(fill = FieldFill.INSERT)
    private Date createAt;
 
    /**
     * 开始时间
     */
    private Date startTime;
 
    /**
     * 结束时间
     */
    private Date endTime;
 
    /**
     * 奖励积分
     */
    private Integer award;
 
    /**
     * 签到位置
     */
    private String position;
 
    /**
     * 签到次数
     */
    private Integer times;
 
    /**
     * 二维码id
     */
    private Integer codeId;
 
    /**
     * 活动类型 1居民,志愿者 2党员
     */
    private Integer type;
 
    /**
    * 是否是志愿者 0 否 1 是
    */
    private Integer isVolunteer;
 
@Override
public String toString() {
        return "ComActActRegistDO{" +
                "id=" + id +
                ", activityId=" + activityId +
                ", userId=" + userId +
                ", createAt=" + createAt +
                ", isVolunteer=" + isVolunteer +
        "}";
        }
}