Blame view

src/com/ectrip/cyt/request/StatisticOrderRequest.java 894 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
  package com.ectrip.cyt.request;
  
  import com.ectrip.cyt.base.Request;
  
  public class StatisticOrderRequest  extends Request{
  	String startdate;
  	String enddate;
  	String month;
  	String method;
  	
  	public StatisticOrderRequest(String method,String startdate, String enddate, String month) {
  		super();
  		this.method=method;
  		this.startdate = startdate;
  		this.enddate = enddate;
  		this.month = month;
  	}
  
  	public String getMethod() {
  		return method;
  	}
  
  
  	public void setMethod(String method) {
  		this.method = method;
  	}
  
  
  	public String getStartdate() {
  		return startdate;
  	}
  
  	public void setStartdate(String startdate) {
  		this.startdate = startdate;
  	}
  
  	public String getEnddate() {
  		return enddate;
  	}
  
  	public void setEnddate(String enddate) {
  		this.enddate = enddate;
  	}
  
  	public String getMonth() {
  		return month;
  	}
  
  	public void setMonth(String month) {
  		this.month = month;
  	}
  }