Blame view

src/com/ectrip/cyt/response/DetectVersionResponse.java 1.23 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
  package com.ectrip.cyt.response;
  
  import com.ectrip.cyt.base.Response;
  
  public class DetectVersionResponse extends Response {
  	public String url;// 链接地址
  	public String name;// 名称
  	public String desc;// 描述
  	public String updateTime;// 更新时间
  	public String note1;// 备用
  	public String note2;// 备用
  
  	public DetectVersionResponse() {
  		super();
  	}
  
  	public DetectVersionResponse(String url, String name, String desc,
  								 String updateTime) {
  		super();
  		this.url = url;
  		this.name = name;
  		this.desc = desc;
  		this.updateTime = updateTime;
  	}
  
  	public String getUrl() {
  		return url;
  	}
  
  	public void setUrl(String url) {
  		this.url = url;
  	}
  
  	public String getName() {
  		return name;
  	}
  
  	public void setName(String name) {
  		this.name = name;
  	}
  
  	public String getDesc() {
  		return desc;
  	}
  
  	public void setDesc(String desc) {
  		this.desc = desc;
  	}
  
  	public String getUpdateTime() {
  		return updateTime;
  	}
  
  	public void setUpdateTime(String updateTime) {
  		this.updateTime = updateTime;
  	}
  
  	public String getNote1() {
  		return note1;
  	}
  
  	public void setNote1(String note1) {
  		this.note1 = note1;
  	}
  
  	public String getNote2() {
  		return note2;
  	}
  
  	public void setNote2(String note2) {
  		this.note2 = note2;
  	}
  
  }