Blame view

src/com/ectrip/cyt/base/Request.java 860 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
  package com.ectrip.cyt.base;
  
  public class Request {
  	public String ver;// 版本号
  	public String verType; //版本类型
  	public String devId;// 移动终端ID
  	public String devType;// 终端类型
  
  	public Request() {
  		super();
  	}
  
  	public Request(String version, String deviceId, String deviceType) {
  		super();
  		this.ver = version;
  		this.devId = deviceId;
  		this.devType = deviceType;
  	}
  
  	public String getVer() {
  		return ver;
  	}
  
  	public void setVer(String ver) {
  		this.ver = ver;
  	}
  
  	public String getVerType() {
  		return verType;
  	}
  
  	public void setVerType(String verType) {
  		this.verType = verType;
  	}
  
  	public String getDevId() {
  		return devId;
  	}
  
  	public void setDevId(String devId) {
  		this.devId = devId;
  	}
  
  	public String getDevType() {
  		return devType;
  	}
  
  	public void setDevType(String devType) {
  		this.devType = devType;
  	}
  }