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
package io.hmit.modules.serviceOrder.entity;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.util.Date;
/**
* 报名表
*
* @author Shen Yuanfeng syf0412@vip.qq.com
* @since 1.0.0 2021-05-12
*/
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("tb_enroll")
public class EnrollEntity {
private static final long serialVersionUID = 1L;
@TableId
private Long id;
/**
* 用户id
*/
private Long userId;
/**
* 活动id
*/
private Long eventId;
/**
* 活动名称
*/
private String eventTitle;
/**
* 报名费
*/
private String eventFee;
/**
* 图像id
*/
private Long eventImageId;
/**
* 图像url
*/
private String eventImageUrl;
/**
* 姓名
*/
private String name;
/**
* 性别
*/
private Integer gender;
/**
* 电话
*/
private String mobile;
/**
* 状态:0已报名,1已取消
*/
private Integer status;
/**
* 备注
*/
private String remark;
/**
* 创建时间
*/
private Date createDate;
/**
* 更新时间
*/
private Date updateDate;
}