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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package io.hmit.modules.serviceOrder.entity;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.hmit.common.entity.BaseEntity;
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("pension_event")
public class PensionEventEntity {
private static final long serialVersionUID = 1L;
@TableId
private Long id;
/**
* 活动名称
*/
private String eventTitle;
/**
* 图像id
*/
private Long eventImageId;
/**
* 图像url
*/
private String eventImageUrl;
/**
* 负责人
*/
private String eventLeaderName;
/**
* 电话
*/
private String eventLeaderPhone;
/**
* 报名费
*/
private String eventFee;
/**
* 计划人数
*/
private String eventNum;
/**
* 介绍
*/
private String eventDescribe;
/**
* 结束展示内容
*/
private String eventEndDescribe;
/**
* 活动签到信息
*/
private String eventClock;
/**
* 状态:0未发布(草稿),1已发布(可报名),2结束报名,3活动结束,4隐藏
*/
private Integer status;
/**
* 活动地点
*/
private String eventPlace;
/**
* 报名结束日期
*/
private Date enrollEndDate;
/**
* 活动日期
*/
private String eventDate;
/**
* 机构id
*/
private Long eventOrgId;
/**
* 机构名称
*/
private String eventOrgName;
/**
* 社区id
*/
private Long eventComId;
/**
* 备注
*/
private String remark;
/**
* 创建者
*/
private Long creator;
/**
* 创建时间
*/
private Date createDate;
/**
* 更新时间
*/
private Date updateDate;
}