Blame view

src/com/ectrip/cyt/response/ProductInfoQuery.java 3.34 KB
3c2353cd   杜方   1、畅游通核销app源码提交;
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
  package com.ectrip.cyt.response;
  
  /**
   * This is
   *
   * @author Jiehao Ling, 5:28 PM,9/6/16
   */
  public class ProductInfoQuery {
      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;
      }
  }