Blame view

src/com/ectrip/cyt/response/ProductInfoQuery.java 6.3 KB
3c2353cd   杜方   1、畅游通核销app源码提交;
1
2
  package com.ectrip.cyt.response;
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
3
4
5
6
  import com.ectrip.cyt.base.OrderInfo;
  
  import java.util.List;
  
3c2353cd   杜方   1、畅游通核销app源码提交;
7
8
9
10
11
12
  /**
   * This is
   *
   * @author Jiehao Ling, 5:28 PM,9/6/16
   */
  public class ProductInfoQuery {
2707d233   杜方   1、畅游通核销app;修改扫二维码...
13
14
15
16
17
18
19
20
21
22
23
24
  
      private String baseQuantity;
      private String consumedQuantity;
      private String endDate;
      private String name;
      private String productId;
      private String quantity;
      private String startDate;
      private String totalQuantity;
  //    private List<OrderPassengersBean> orderPassengers;
      private List<PassengerInfosBean> passengerInfos;
          public ProductInfoQuery(String productId, String name, String totalQuantity, String consumedQuantity, String quantity, String baseQuantity, String startDate, String endDate,  List<PassengerInfosBean> passengerInfos) {
3c2353cd   杜方   1、畅游通核销app源码提交;
25
26
27
28
29
30
31
32
          this.productId = productId;
          this.name = name;
          this.totalQuantity = totalQuantity;
          this.consumedQuantity = consumedQuantity;
          this.quantity = quantity;
          this.baseQuantity = baseQuantity;
          this.startDate = startDate;
          this.endDate = endDate;
2707d233   杜方   1、畅游通核销app;修改扫二维码...
33
          this.passengerInfos = passengerInfos;
3c2353cd   杜方   1、畅游通核销app源码提交;
34
35
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
36
37
      public String getBaseQuantity() {
          return baseQuantity;
3c2353cd   杜方   1、畅游通核销app源码提交;
38
39
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
40
41
      public void setBaseQuantity(String baseQuantity) {
          this.baseQuantity = baseQuantity;
3c2353cd   杜方   1、畅游通核销app源码提交;
42
43
44
45
46
47
48
49
50
51
      }
  
      public String getConsumedQuantity() {
          return consumedQuantity;
      }
  
      public void setConsumedQuantity(String consumedQuantity) {
          this.consumedQuantity = consumedQuantity;
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
52
53
      public String getEndDate() {
          return endDate;
3c2353cd   杜方   1、畅游通核销app源码提交;
54
55
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
56
57
      public void setEndDate(String endDate) {
          this.endDate = endDate;
3c2353cd   杜方   1、畅游通核销app源码提交;
58
59
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
60
61
      public String getName() {
          return name;
3c2353cd   杜方   1、畅游通核销app源码提交;
62
63
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
64
65
      public void setName(String name) {
          this.name = name;
3c2353cd   杜方   1、畅游通核销app源码提交;
66
67
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
68
69
      public String getProductId() {
          return productId;
3c2353cd   杜方   1、畅游通核销app源码提交;
70
71
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
72
73
      public void setProductId(String productId) {
          this.productId = productId;
3c2353cd   杜方   1、畅游通核销app源码提交;
74
75
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
76
77
      public String getQuantity() {
          return quantity;
3c2353cd   杜方   1、畅游通核销app源码提交;
78
79
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
80
81
      public void setQuantity(String quantity) {
          this.quantity = quantity;
3c2353cd   杜方   1、畅游通核销app源码提交;
82
83
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
84
85
      public String getStartDate() {
          return startDate;
3c2353cd   杜方   1、畅游通核销app源码提交;
86
87
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
88
89
      public void setStartDate(String startDate) {
          this.startDate = startDate;
3c2353cd   杜方   1、畅游通核销app源码提交;
90
91
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
92
93
      public String getTotalQuantity() {
          return totalQuantity;
3c2353cd   杜方   1、畅游通核销app源码提交;
94
95
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
96
97
      public void setTotalQuantity(String totalQuantity) {
          this.totalQuantity = totalQuantity;
3c2353cd   杜方   1、畅游通核销app源码提交;
98
99
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
100
101
102
103
104
105
  //    public List<OrderPassengersBean> getOrderPassengers() {
  //        return orderPassengers;
  //    }
  //
  //    public void setOrderPassengers(List<OrderPassengersBean> orderPassengers) {
  //        this.orderPassengers = orderPassengers;
3c2353cd   杜方   1、畅游通核销app源码提交;
106
  
3c2353cd   杜方   1、畅游通核销app源码提交;
107
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
108
109
      public List<PassengerInfosBean> getPassengerInfos() {
          return passengerInfos;
3c2353cd   杜方   1、畅游通核销app源码提交;
110
111
      }
  
2707d233   杜方   1、畅游通核销app;修改扫二维码...
112
113
      public void setPassengerInfos(List<PassengerInfosBean> passengerInfos) {
          this.passengerInfos = passengerInfos;
3c2353cd   杜方   1、畅游通核销app源码提交;
114
115
      }
  }
2707d233   杜方   1、畅游通核销app;修改扫二维码...
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
  
  //    private String productId;// 原始产品ID
  //    private String name;// 产品名称
  //    private String totalQuantity;// 总数量
  //    private String consumedQuantity;// 已消费数量
  //    private String quantity;// 订单剩余数量
  //    private String baseQuantity;// 基数
  //    private String startDate;// 开始日期(yyyy;//MM;//dd)
  //    private String endDate;// 截止日期(yyyy;//MM;//dd)
  //    private String price;// 单价
  //    private String money;// 金额
  //    private String paymentType;// 支付类型(预付、到付)
  //    private String pmsProductId;// 线下产品ID(窗口设备使用)
  
  //    public ProductInfoQuery() {
  //    }
  
  //    public ProductInfoQuery(String productId, String name, String totalQuantity, String consumedQuantity, String quantity, String baseQuantity, String startDate, String endDate, String price, String money, String paymentType, String pmsProductId) {
  //        this.productId = productId;
  //        this.name = name;
  //        this.totalQuantity = totalQuantity;
  //        this.consumedQuantity = consumedQuantity;
  //        this.quantity = quantity;
  //        this.baseQuantity = baseQuantity;
  //        this.startDate = startDate;
  //        this.endDate = endDate;
  //        this.price = price;
  //        this.money = money;
  //        this.paymentType = paymentType;
  //        this.pmsProductId = pmsProductId;
  //    }
  
  //    public String getProductId() {
  //        return productId;
  //    }
  //
  //    public void setProductId(String productId) {
  //        this.productId = productId;
  //    }
  //
  //    public String getName() {
  //        return name;
  //    }
  //
  //    public void setName(String name) {
  //        this.name = name;
  //    }
  //
  //    public String getTotalQuantity() {
  //        return totalQuantity;
  //    }
  //
  //    public void setTotalQuantity(String totalQuantity) {
  //        this.totalQuantity = totalQuantity;
  //    }
  //
  //    public String getConsumedQuantity() {
  //        return consumedQuantity;
  //    }
  //
  //    public void setConsumedQuantity(String consumedQuantity) {
  //        this.consumedQuantity = consumedQuantity;
  //    }
  //
  //    public String getQuantity() {
  //        return quantity;
  //    }
  //
  //    public void setQuantity(String quantity) {
  //        this.quantity = quantity;
  //    }
  //
  //    public String getBaseQuantity() {
  //        return baseQuantity;
  //    }
  //
  //    public void setBaseQuantity(String baseQuantity) {
  //        this.baseQuantity = baseQuantity;
  //    }
  //
  //    public String getStartDate() {
  //        return startDate;
  //    }
  //
  //    public void setStartDate(String startDate) {
  //        this.startDate = startDate;
  //    }
  //
  //    public String getEndDate() {
  //        return endDate;
  //    }
  //
  //    public void setEndDate(String endDate) {
  //        this.endDate = endDate;
  //    }
  //
  //    public String getPrice() {
  //        return price;
  //    }
  //
  //    public void setPrice(String price) {
  //        this.price = price;
  //    }
  //
  //    public String getMoney() {
  //        return money;
  //    }
  //
  //    public void setMoney(String money) {
  //        this.money = money;
  //    }
  //
  //    public String getPaymentType() {
  //        return paymentType;
  //    }
  //
  //    public void setPaymentType(String paymentType) {
  //        this.paymentType = paymentType;
  //    }
  //
  //    public String getPmsProductId() {
  //        return pmsProductId;
  //    }
  //
  //    public void setPmsProductId(String pmsProductId) {
  //        this.pmsProductId = pmsProductId;
  //    }
  //}