Blame view

src/com/ectrip/cyt/request/ConsumeCodeRequest.java 2.52 KB
a94485b3   杜方   畅游通核销app:1.适配商米v2打印
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
  package com.ectrip.cyt.request;
  
  import java.util.List;
  
  public class ConsumeCodeRequest {
      public String ver;// 版本号
      public String verType; //版本类型
      public String devId;// 移动终端ID
      public String devType;// 终端类型
      public Long accountId;
      public String orderId;
      public String count;
      public String password;
      public String verifyPassword;
      public String consumedSeq;
      public List<ProductOfConsumeOrder> products;
  
      public ConsumeCodeRequest(String orderId, String count, String password, String verifyPassword, String consumedSeq, List<ProductOfConsumeOrder> products) {
          super();
          this.orderId = orderId;
          this.count = count;
          this.password = password;
          this.verifyPassword = verifyPassword;
          this.consumedSeq = consumedSeq;
          this.products = products;
      }
  
      public String getOrderId() {
          return orderId;
      }
  
      public void setOrderId(String orderId) {
          this.orderId = orderId;
      }
  
      public String getCount() {
          return count;
      }
  
      public void setCount(String count) {
          this.count = count;
      }
  
      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 List<ProductOfConsumeOrder> getProducts() {
          return products;
      }
  
      public void setProducts(List<ProductOfConsumeOrder> products) {
          this.products = products;
      }
  
      public String getVer() {
          return ver;
      }
  
      public void setVer(String ver) {
          this.ver = ver;
      }
  
      public String getVerType() {
          return verType;
      }
  
      public void setVerType(String verType) {
          this.verType = verType;
      }
  
      public String getDevId() {
          return devId;
      }
  
      public void setDevId(String devId) {
          this.devId = devId;
      }
  
      public String getDevType() {
          return devType;
      }
  
      public void setDevType(String devType) {
          this.devType = devType;
      }
  
      public Long getAccountId() {
          return accountId;
      }
  
      public void setAccountId(Long accountId) {
          this.accountId = accountId;
      }
  }