1
1
package me .chanjar .weixin .common .bean ;
2
2
3
+ import lombok .Data ;
3
4
import me .chanjar .weixin .common .util .ToStringUtils ;
4
5
5
6
import java .io .Serializable ;
6
7
7
8
/**
8
- * 卡券Api签名
9
+ * 卡券Api签名.
9
10
*
10
11
* @author YuJian
11
12
* @version 15/11/8
12
13
*/
14
+ @ Data
13
15
public class WxCardApiSignature implements Serializable {
14
-
15
16
private static final long serialVersionUID = 158176707226975979L ;
16
17
17
18
private String appId ;
@@ -37,75 +38,4 @@ public String toString() {
37
38
return ToStringUtils .toSimpleString (this );
38
39
}
39
40
40
- public String getAppId () {
41
- return this .appId ;
42
- }
43
-
44
- public void setAppId (String appId ) {
45
- this .appId = appId ;
46
- }
47
-
48
- public String getCardId () {
49
- return this .cardId ;
50
- }
51
-
52
- public void setCardId (String cardId ) {
53
- this .cardId = cardId ;
54
- }
55
-
56
- public String getCardType () {
57
- return this .cardType ;
58
- }
59
-
60
- public void setCardType (String cardType ) {
61
- this .cardType = cardType ;
62
- }
63
-
64
- public String getLocationId () {
65
- return this .locationId ;
66
- }
67
-
68
- public void setLocationId (String locationId ) {
69
- this .locationId = locationId ;
70
- }
71
-
72
- public String getCode () {
73
- return this .code ;
74
- }
75
-
76
- public void setCode (String code ) {
77
- this .code = code ;
78
- }
79
-
80
- public String getOpenId () {
81
- return this .openId ;
82
- }
83
-
84
- public void setOpenId (String openId ) {
85
- this .openId = openId ;
86
- }
87
-
88
- public Long getTimestamp () {
89
- return this .timestamp ;
90
- }
91
-
92
- public void setTimestamp (Long timestamp ) {
93
- this .timestamp = timestamp ;
94
- }
95
-
96
- public String getNonceStr () {
97
- return this .nonceStr ;
98
- }
99
-
100
- public void setNonceStr (String nonceStr ) {
101
- this .nonceStr = nonceStr ;
102
- }
103
-
104
- public String getSignature () {
105
- return this .signature ;
106
- }
107
-
108
- public void setSignature (String signature ) {
109
- this .signature = signature ;
110
- }
111
41
}
0 commit comments