Blame view

src/com/ectrip/cyt/request/ProductOfConsumeOrder.java 833 Bytes
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
  package com.ectrip.cyt.request;
  
  /**
   * This is 消费_产品信息
   *
   * @author Jiehao Ling, 4:55 PM,9/6/16
   */
  public class ProductOfConsumeOrder {
      private String productId;// 原始产品ID
      private Integer consumedQuantity;// 消费数量
  
      public ProductOfConsumeOrder() {
      }
  
      public ProductOfConsumeOrder(String productId, Integer consumedQuantity) {
          this.productId = productId;
          this.consumedQuantity = consumedQuantity;
      }
  
      public String getProductId() {
          return productId;
      }
  
      public void setProductId(String productId) {
          this.productId = productId;
      }
  
      public Integer getConsumedQuantity() {
          return consumedQuantity;
      }
  
      public void setConsumedQuantity(Integer consumedQuantity) {
          this.consumedQuantity = consumedQuantity;
      }
  }