Blame view

src/com/ectrip/cyt/response/ConsumeOrderResponse.java 1.92 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
  package com.ectrip.cyt.response;
  
  import java.util.List;
  
  import com.ectrip.cyt.base.Response;
  
  public class ConsumeOrderResponse extends Response {
  	public String id;// 订单 ID
  	public String status;// 订单状态
  	public List<String> printInfos;// 打印信息
  
  	public String note1;//
  	public String note2;//
  	public String note3;//
  	public String note4;//
  	public String note5;//
  	public String note6;//
  	public String note7;//
  	public String note8;//
  
  	public ConsumeOrderResponse() {
  		super();
  	}
  
  	public ConsumeOrderResponse(String orderId, String orderStatus,
  								List<String> printInfos) {
  		super();
  		this.id = orderId;
  		this.status = orderStatus;
  		this.printInfos = printInfos;
  	}
  
  	public String getId() {
  		return id;
  	}
  
  	public void setId(String id) {
  		this.id = id;
  	}
  
  	public String getStatus() {
  		return status;
  	}
  
  	public void setStatus(String status) {
  		this.status = status;
  	}
  
  	public List<String> getPrintInfos() {
  		return printInfos;
  	}
  
  	public void setPrintInfos(List<String> printInfos) {
  		this.printInfos = printInfos;
  	}
  
  	public String getNote1() {
  		return note1;
  	}
  
  	public void setNote1(String note1) {
  		this.note1 = note1;
  	}
  
  	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;
  	}
  
  }