修改升级接口
This commit is contained in:
@@ -8,140 +8,100 @@ import java.io.Serializable;
|
||||
* @since 6/21/22
|
||||
*/
|
||||
public class AppInfo implements Serializable {
|
||||
private IdInfo _id;
|
||||
private int bk_inst_id;
|
||||
private String bk_inst_name;
|
||||
private String bk_supplier_account;
|
||||
private String screen_type; //1,司机屏,2乘客屏
|
||||
private String sn;
|
||||
private String last_time;
|
||||
private String app_url;
|
||||
private String bk_obj_id;
|
||||
private int version_code;
|
||||
private String version_name;
|
||||
private String create_time;
|
||||
private String car_type;
|
||||
private String appUrl;
|
||||
private int versionCode;
|
||||
private String versionName;
|
||||
private String screenType;
|
||||
private String installTitle;
|
||||
private String installContent;
|
||||
private String installType;
|
||||
private String beginTime;
|
||||
private String endTime;
|
||||
|
||||
public IdInfo get_id() {
|
||||
return _id;
|
||||
public String getAppUrl() {
|
||||
return appUrl;
|
||||
}
|
||||
|
||||
public void set_id(IdInfo _id) {
|
||||
this._id = _id;
|
||||
public void setAppUrl(String appUrl) {
|
||||
this.appUrl = appUrl;
|
||||
}
|
||||
|
||||
public int getBk_inst_id() {
|
||||
return bk_inst_id;
|
||||
public int getVersionCode() {
|
||||
return versionCode;
|
||||
}
|
||||
|
||||
public void setBk_inst_id(int bk_inst_id) {
|
||||
this.bk_inst_id = bk_inst_id;
|
||||
public void setVersionCode(int versionCode) {
|
||||
this.versionCode = versionCode;
|
||||
}
|
||||
|
||||
public String getBk_inst_name() {
|
||||
return bk_inst_name;
|
||||
public String getVersionName() {
|
||||
return versionName;
|
||||
}
|
||||
|
||||
public void setBk_inst_name(String bk_inst_name) {
|
||||
this.bk_inst_name = bk_inst_name;
|
||||
public void setVersionName(String versionName) {
|
||||
this.versionName = versionName;
|
||||
}
|
||||
|
||||
public String getBk_supplier_account() {
|
||||
return bk_supplier_account;
|
||||
public String getScreenType() {
|
||||
return screenType;
|
||||
}
|
||||
|
||||
public void setBk_supplier_account(String bk_supplier_account) {
|
||||
this.bk_supplier_account = bk_supplier_account;
|
||||
public void setScreenType(String screenType) {
|
||||
this.screenType = screenType;
|
||||
}
|
||||
|
||||
public String getScreen_type() {
|
||||
return screen_type;
|
||||
public String getInstallTitle() {
|
||||
return installTitle;
|
||||
}
|
||||
|
||||
public void setScreen_type(String screen_type) {
|
||||
this.screen_type = screen_type;
|
||||
public void setInstallTitle(String installTitle) {
|
||||
this.installTitle = installTitle;
|
||||
}
|
||||
|
||||
public String getSn() {
|
||||
return sn;
|
||||
public String getInstallContent() {
|
||||
return installContent;
|
||||
}
|
||||
|
||||
public void setSn(String sn) {
|
||||
this.sn = sn;
|
||||
public void setInstallContent(String installContent) {
|
||||
this.installContent = installContent;
|
||||
}
|
||||
|
||||
public String getApp_url() {
|
||||
return app_url;
|
||||
public String getInstallType() {
|
||||
return installType;
|
||||
}
|
||||
|
||||
public void setApp_url(String app_url) {
|
||||
this.app_url = app_url;
|
||||
public void setInstallType(String installType) {
|
||||
this.installType = installType;
|
||||
}
|
||||
|
||||
public String getBk_obj_id() {
|
||||
return bk_obj_id;
|
||||
public String getBeginTime() {
|
||||
return beginTime;
|
||||
}
|
||||
|
||||
public void setBk_obj_id(String bk_obj_id) {
|
||||
this.bk_obj_id = bk_obj_id;
|
||||
public void setBeginTime(String beginTime) {
|
||||
this.beginTime = beginTime;
|
||||
}
|
||||
|
||||
public int getVersion_code() {
|
||||
return version_code;
|
||||
public String getEndTime() {
|
||||
return endTime;
|
||||
}
|
||||
|
||||
public void setVersion_code(int version_code) {
|
||||
this.version_code = version_code;
|
||||
}
|
||||
|
||||
public String getVersion_name() {
|
||||
return version_name;
|
||||
}
|
||||
|
||||
public void setVersion_name(String version_name) {
|
||||
this.version_name = version_name;
|
||||
}
|
||||
|
||||
public String getLast_time() {
|
||||
return last_time;
|
||||
}
|
||||
|
||||
public void setLast_time(String last_time) {
|
||||
this.last_time = last_time;
|
||||
}
|
||||
|
||||
public String getCreate_time() {
|
||||
return create_time;
|
||||
}
|
||||
|
||||
public void setCreate_time(String create_time) {
|
||||
this.create_time = create_time;
|
||||
}
|
||||
|
||||
public String getCar_type() {
|
||||
return car_type;
|
||||
}
|
||||
|
||||
public void setCar_type(String car_type) {
|
||||
this.car_type = car_type;
|
||||
public void setEndTime(String endTime) {
|
||||
this.endTime = endTime;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "AppInfo{" +
|
||||
"_id=" + _id +
|
||||
", bk_inst_id=" + bk_inst_id +
|
||||
", bk_inst_name='" + bk_inst_name + '\'' +
|
||||
", bk_supplier_account='" + bk_supplier_account + '\'' +
|
||||
", screen_type='" + screen_type + '\'' +
|
||||
", sn='" + sn + '\'' +
|
||||
", last_time='" + last_time + '\'' +
|
||||
", app_url='" + app_url + '\'' +
|
||||
", bk_obj_id='" + bk_obj_id + '\'' +
|
||||
", version_code=" + version_code +
|
||||
", version_name='" + version_name + '\'' +
|
||||
", create_time='" + create_time + '\'' +
|
||||
", car_type='" + car_type + '\'' +
|
||||
"appUrl='" + appUrl + '\'' +
|
||||
", versionCode=" + versionCode +
|
||||
", versionName='" + versionName + '\'' +
|
||||
", screenType='" + screenType + '\'' +
|
||||
", installTitle='" + installTitle + '\'' +
|
||||
", installContent='" + installContent + '\'' +
|
||||
", installType='" + installType + '\'' +
|
||||
", beginTime='" + beginTime + '\'' +
|
||||
", endTime='" + endTime + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,20 +10,26 @@ import java.util.ArrayList;
|
||||
* @since: 6/21/22
|
||||
*/
|
||||
public class UpgradeAppInfo extends BaseData {
|
||||
public ArrayList<AppInfo> data;
|
||||
// public ArrayList<AppInfo> data;
|
||||
//
|
||||
// public ArrayList<AppInfo> getData() {
|
||||
// return data;
|
||||
// }
|
||||
//
|
||||
// public void setData(ArrayList<AppInfo> data) {
|
||||
// this.data = data;
|
||||
// }
|
||||
|
||||
public ArrayList<AppInfo> getData() {
|
||||
return data;
|
||||
}
|
||||
public AppInfo result;
|
||||
|
||||
public void setData(ArrayList<AppInfo> data) {
|
||||
this.data = data;
|
||||
public void setResult(AppInfo data) {
|
||||
this.result = data;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "UpgradeAppInfo{" +
|
||||
"data=" + data +
|
||||
"result=" + result +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user