LCTMemberLocationCreateRequest.java
1.89 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
package com.xiniunet.lecunstomization.request;
import com.xiniunet.framework.base.BaseRequest;
import javax.validation.constraints.NotNull;
/**
* Created by Auy_J on 2018/3/8.
*/
public class LCTMemberLocationCreateRequest extends BaseRequest{
/**
* 会员ID
*/
@NotNull(message = "会员ID不能为空")
private Long memberId;
/**
* 县ID
*/
private Long districtId;
/**
* 县
*/
@NotNull(message = "县不能为空")
private String districtName;
/**
* 收货人姓名
*/
@NotNull(message = "收货人姓名不能为空")
private String receiptName;
/**
* 收货人电话
*/
@NotNull(message = "收货人电话不能为空")
private String receiptPhone;
/**
* 收货人地址
*/
@NotNull(message = "收货人地址不能为空")
private String receiptAddress;
public String getDistrictName() {
return districtName;
}
public void setDistrictName(String districtName) {
this.districtName = districtName;
}
public Long getMemberId() {
return memberId;
}
public void setMemberId(Long memberId) {
this.memberId = memberId;
}
public Long getDistrictId() {
return districtId;
}
public void setDistrictId(Long districtId) {
this.districtId = districtId;
}
public String getReceiptName() {
return receiptName;
}
public void setReceiptName(String receiptName) {
this.receiptName = receiptName;
}
public String getReceiptPhone() {
return receiptPhone;
}
public void setReceiptPhone(String receiptPhone) {
this.receiptPhone = receiptPhone;
}
public String getReceiptAddress() {
return receiptAddress;
}
public void setReceiptAddress(String receiptAddress) {
this.receiptAddress = receiptAddress;
}
}