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
package com.matrix.system.activity.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.matrix.core.anotations.Extend;
import com.matrix.system.score.entity.BaseEntity;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @description 签到记录表
 * @author yourName
 * @date 2021-03-31 16:57
 */
@Data
@TableName("activity_sign_record")
public class ActivitySignRecord  extends BaseEntity{
    @Extend
    private static final long serialVersionUID = 1L; 
 
    
 
 
    
    /**
     * userId
     */
 
 
    private Long  userId;
    
    /**
     * 签到时间
     */
 
 
    private Date  signTime;
    
    /**
     * 累计签到天数
     */
 
 
    private Integer  cumulativeDay;
    
    /**
     * 活动主表ID
     */
 
 
    private Long  activityId;
    
    /**
     * 公司ID
     */
 
 
    private Long  companyId;
 
 
 
  
}