Blame view

src/com/ectrip/cyt/request/QueryOrderRequest.java 2.04 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
  package com.ectrip.cyt.request;
  
  import com.ectrip.cyt.base.Request;
  
  public class QueryOrderRequest extends Request {
  	private String method;// 请求方式
  	private String orderId;//订单号
  	private String verifyCode;// 验证码
  	private String phone;// 手机号
  	private String credentials;// 证件号码
  	private String startDate;// 开始日期
  	private String endDate;// 截止日期
  	private String pageSize;// 分页大小
  	private String pageNo;// 页数
  
  	public QueryOrderRequest() {
  	}
  
  	public QueryOrderRequest( String method, String verifyCode, String phone, String credentials, String orderId, String startDate, String endDate,String pageSize,String pageNo) {
  		this.method = method;
  		this.orderId = orderId;
  		this.verifyCode = verifyCode;
  		this.phone = phone;
  		this.credentials = credentials;
  		this.startDate = startDate;
  		this.endDate = endDate;
  		this.pageSize = pageSize;
  		this.pageNo = pageNo;
  	}
  
  	public void setMethod(String method) {
  		this.method = method;
  	}
  
  	public void setOrderId(String orderId) {
  		this.orderId = orderId;
  	}
  
  	public void setVerifyCode(String verifyCode) {
  		this.verifyCode = verifyCode;
  	}
  
  	public void setPhone(String phone) {
  		this.phone = phone;
  	}
  
  	public void setCredentials(String credentials) {
  		this.credentials = credentials;
  	}
  
  	public void setStartDate(String startDate) {
  		this.startDate = startDate;
  	}
  
  	public void setEndDate(String endDate) {
  		this.endDate = endDate;
  	}
  
  	public void setPageSize(String pageSize) {
  		this.pageSize = pageSize;
  	}
  
  	public void setPageNo(String pageNo) {
  		this.pageNo = pageNo;
  	}
  
  	public String getMethod() {
  		return method;
  	}
  
  	public String getOrderId() {
  		return orderId;
  	}
  
  	public String getVerifyCode() {
  		return verifyCode;
  	}
  
  	public String getPhone() {
  		return phone;
  	}
  
  	public String getCredentials() {
  		return credentials;
  	}
  
  	public String getStartDate() {
  		return startDate;
  	}
  
  	public String getEndDate() {
  		return endDate;
  	}
  
  	public String getPageSize() {
  		return pageSize;
  	}
  
  	public String getPageNo() {
  		return pageNo;
  	}
  }