Blame view

src/com/ectrip/cyt/request/ConsumeOrderRequest.java 3.32 KB
3c2353cd   杜方   1、畅游通核销app源码提交;
1
2
3
4
5
6
7
8
9
10
11
12
13
  package com.ectrip.cyt.request;
  
  import com.ectrip.cyt.base.Request;
  
  import java.util.List;
  
  public class ConsumeOrderRequest extends Request {
  	public String orderId;// 订单 ID
  	public String consumedAmount;// 消费数量
  	public String password;// 密码
  	public String verifyPassword;// 验证密码
  	private Long accountId; //操作员ID
  	public List<ProductOfConsumeOrder> products;//产品信息
2707d233   杜方   1、畅游通核销app;修改扫二维码...
14
  	private String voucher;
3c2353cd   杜方   1、畅游通核销app源码提交;
15
16
  
  	public String consumedSeq;//流水号
2707d233   杜方   1、畅游通核销app;修改扫二维码...
17
18
  	public String code;
  	public String credentials;
3c2353cd   杜方   1、畅游通核销app源码提交;
19
20
21
22
23
24
25
26
27
  	public String note2;//
  	public String note3;//
  	public String note4;//
  	public String note5;//
  	public String note6;//
  	public String note7;//
  	public String note8;//
  
  	public ConsumeOrderRequest(String orderId, String consumeCount,
2707d233   杜方   1、畅游通核销app;修改扫二维码...
28
  							   String password, String verifyPassword,String consumedSeq,List<ProductOfConsumeOrder> products) {
3c2353cd   杜方   1、畅游通核销app源码提交;
29
30
31
32
33
34
35
  		super();
  		this.orderId = orderId;
  		this.consumedAmount = consumeCount;
  		this.password = password;
  		this.verifyPassword = verifyPassword;
  		this.products = products;
  		this.consumedSeq = consumedSeq;
2707d233   杜方   1、畅游通核销app;修改扫二维码...
36
  
3c2353cd   杜方   1、畅游通核销app源码提交;
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
  	}
  
  	public void setOrderId(String orderId) {
  		this.orderId = orderId;
  	}
  
  	public String getOrderId() {
  
  		return orderId;
  	}
  
  	public void setAccountId(Long accountId) {
  
  		this.accountId = accountId;
  	}
  
  	public Long getAccountId() {
  
  		return accountId;
  	}
  
  	public List<ProductOfConsumeOrder> getProducts() {
  		return products;
  	}
  
  	public void setProducts(List<ProductOfConsumeOrder> products) {
  		this.products = products;
  	}
  
  	public String getorderId() {
  		return orderId;
  	}
  
  	public void setorderId(String orderId) {
  		this.orderId = orderId;
  	}
  
  	public String getConsumedAmount() {
  		return consumedAmount;
  	}
  
  	public void setConsumedAmount(String consumedAmount) {
  		this.consumedAmount = consumedAmount;
  	}
  
  	public String getPassword() {
  		return password;
  	}
  
  	public void setPassword(String password) {
  		this.password = password;
  	}
  
  	public String getVerifyPassword() {
  		return verifyPassword;
  	}
  
  	public void setVerifyPassword(String verifyPassword) {
  		this.verifyPassword = verifyPassword;
  	}
  
  	public String getConsumedSeq() {
  		return consumedSeq;
  	}
  
  	public void setConsumedSeq(String consumedSeq) {
  		this.consumedSeq = consumedSeq;
  	}
  
  	public String getNote2() {
  		return note2;
  	}
  
  	public void setNote2(String note2) {
  		this.note2 = note2;
  	}
  
  	public String getNote3() {
  		return note3;
  	}
  
  	public void setNote3(String note3) {
  		this.note3 = note3;
  	}
  
  	public String getNote4() {
  		return note4;
  	}
  
  	public void setNote4(String note4) {
  		this.note4 = note4;
  	}
  
  	public String getNote5() {
  		return note5;
  	}
  
  	public void setNote5(String note5) {
  		this.note5 = note5;
  	}
  
  	public String getNote6() {
  		return note6;
  	}
  
  	public void setNote6(String note6) {
  		this.note6 = note6;
  	}
  
  	public String getNote7() {
  		return note7;
  	}
  
  	public void setNote7(String note7) {
  		this.note7 = note7;
  	}
  
  	public String getNote8() {
  		return note8;
  	}
  
  	public void setNote8(String note8) {
  		this.note8 = note8;
  	}
2707d233   杜方   1、畅游通核销app;修改扫二维码...
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
  
  	public String getCode() {
  		return code;
  	}
  
  	public void setCode(String code) {
  		this.code = code;
  	}
  
  	public String getCredentials() {
  		return credentials;
  	}
  
  	public void setCredentials(String credentials) {
  		this.credentials = credentials;
  	}
  
  	public String getVoucher() {
  		return voucher;
  	}
  
  	public void setVoucher(String voucher) {
  		this.voucher = voucher;
  	}
3c2353cd   杜方   1、畅游通核销app源码提交;
185
  }