WxOrder.java
2.53 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/**
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.wechat.entity;
import org.hibernate.validator.constraints.Length;
import com.thinkgem.jeesite.common.persistence.DataEntity;
/**
* 微信预约Entity
* @author lzj
* @version 2020-03-06
*/
public class WxOrder extends DataEntity<WxOrder> {
private static final long serialVersionUID = 1L;
private String userid; //用户id,与微信系统一致
private String yyid; // 预约id
private String yydate; // 预约日期
private String ywdl; // 预约大类
private String ywxl; // 预约小类
private String yysjd; // 预约时间段
private String yyrmc; // 预约人名称
private String yyrcode; //预约人身份证号
private String sign; //签到标志
private String blck; //办理窗口
private String yydh; // 预约单号
public WxOrder() {
super();
}
public String getUserid() {
return userid;
}
public void setUserid(String userid) {
this.userid = userid;
}
public WxOrder(String id){
super(id);
}
@Length(min=0, max=64, message="预约id长度必须介于 0 和 64 之间")
public String getYyid() {
return yyid;
}
public void setYyid(String yyid) {
this.yyid = yyid;
}
@Length(min=0, max=12, message="预约日期长度必须介于 0 和 12 之间")
public String getYydate() {
return yydate;
}
public void setYydate(String yydate) {
this.yydate = yydate;
}
public String getYwdl() {
return ywdl;
}
public void setYwdl(String ywdl) {
this.ywdl = ywdl;
}
public String getYwxl() {
return ywxl;
}
public void setYwxl(String ywxl) {
this.ywxl = ywxl;
}
@Length(min=0, max=12, message="预约时间段长度必须介于 0 和 12 之间")
public String getYysjd() {
return yysjd;
}
public void setYysjd(String yysjd) {
this.yysjd = yysjd;
}
@Length(min=0, max=76, message="预约人名称长度必须介于 0 和 76 之间")
public String getYyrmc() {
return yyrmc;
}
public void setYyrmc(String yyrmc) {
this.yyrmc = yyrmc;
}
public String getYyrcode() {
return yyrcode;
}
public void setYyrcode(String yyrcode) {
this.yyrcode = yyrcode;
}
public String getSign() {
return sign;
}
public void setSign(String sign) {
this.sign = sign;
}
public String getBlck() {
return blck;
}
public void setBlck(String blck) {
this.blck = blck;
}
public String getYydh() {
return yydh;
}
public void setYydh(String yydh) {
this.yydh = yydh;
}
}