Blame view

src/com/ectrip/cyt/response/StatisticsResponse.java 677 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
  package com.ectrip.cyt.response;
  
  import com.ectrip.cyt.base.Request;
  
  /**
   * @author jigo
   * 统计订单返回
   */
  public class StatisticsResponse extends Request {
  	String product;  //产品名称
  	String ordercount;  //订单数量
  	String personcount;	//人数
  	public String getProduct() {
  		return product;
  	}
  	public void setProduct(String product) {
  		this.product = product;
  	}
  	public String getOrdercount() {
  		return ordercount;
  	}
  	public void setOrdercount(String ordercount) {
  		this.ordercount = ordercount;
  	}
  	public String getPersoncount() {
  		return personcount;
  	}
  	public void setPersoncount(String personcount) {
  		this.personcount = personcount;
  	}
  
  }