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;// 页数 private String voucher; public QueryOrderRequest() { } public QueryOrderRequest( String method, String verifyCode, String phone, String credentials, String orderId, String startDate, String endDate,String pageSize,String pageNo,String voucher) { 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; this.voucher = voucher; } 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; } public String getVoucher() { return voucher; } public void setVoucher(String voucher) { this.voucher = voucher; } }