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; } }