优化更新功能和ui
This commit is contained in:
@@ -9,17 +9,17 @@ import java.io.Serializable;
|
||||
*/
|
||||
public class AppInfo implements Serializable {
|
||||
private IdInfo _id;
|
||||
private String bk_inst_id;
|
||||
private int bk_inst_id;
|
||||
private String bk_inst_name;
|
||||
private String bk_supplier_account;
|
||||
private int screen_type; //1,司机屏,2乘客屏
|
||||
private String screen_type; //1,司机屏,2乘客屏
|
||||
private String sn;
|
||||
private long last_time;
|
||||
private String last_time;
|
||||
private String app_url;
|
||||
private String bk_obj_id;
|
||||
private int version_code;
|
||||
private String version_name;
|
||||
private long create_time;
|
||||
private String create_time;
|
||||
|
||||
public IdInfo get_id() {
|
||||
return _id;
|
||||
@@ -29,11 +29,11 @@ public class AppInfo implements Serializable {
|
||||
this._id = _id;
|
||||
}
|
||||
|
||||
public String getBk_inst_id() {
|
||||
public int getBk_inst_id() {
|
||||
return bk_inst_id;
|
||||
}
|
||||
|
||||
public void setBk_inst_id(String bk_inst_id) {
|
||||
public void setBk_inst_id(int bk_inst_id) {
|
||||
this.bk_inst_id = bk_inst_id;
|
||||
}
|
||||
|
||||
@@ -53,11 +53,11 @@ public class AppInfo implements Serializable {
|
||||
this.bk_supplier_account = bk_supplier_account;
|
||||
}
|
||||
|
||||
public int getScreen_type() {
|
||||
public String getScreen_type() {
|
||||
return screen_type;
|
||||
}
|
||||
|
||||
public void setScreen_type(int screen_type) {
|
||||
public void setScreen_type(String screen_type) {
|
||||
this.screen_type = screen_type;
|
||||
}
|
||||
|
||||
@@ -69,14 +69,6 @@ public class AppInfo implements Serializable {
|
||||
this.sn = sn;
|
||||
}
|
||||
|
||||
public long getLast_time() {
|
||||
return last_time;
|
||||
}
|
||||
|
||||
public void setLast_time(long last_time) {
|
||||
this.last_time = last_time;
|
||||
}
|
||||
|
||||
public String getApp_url() {
|
||||
return app_url;
|
||||
}
|
||||
@@ -109,11 +101,19 @@ public class AppInfo implements Serializable {
|
||||
this.version_name = version_name;
|
||||
}
|
||||
|
||||
public long getCreate_time() {
|
||||
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(long create_time) {
|
||||
public void setCreate_time(String create_time) {
|
||||
this.create_time = create_time;
|
||||
}
|
||||
|
||||
|
||||
@@ -9,8 +9,7 @@ import java.util.List;
|
||||
* @since 6/21/22
|
||||
*/
|
||||
public class IdInfo implements Serializable {
|
||||
private String timestamp;
|
||||
private long timestamp;
|
||||
private String date;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -2,19 +2,21 @@ package com.mogo.eagle.core.data.bindingcar;
|
||||
|
||||
import com.mogo.eagle.core.data.BaseData;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
* @author lixiaopeng
|
||||
* @description app升级管理
|
||||
* @since: 6/21/22
|
||||
*/
|
||||
public class UpgradeAppInfo extends BaseData {
|
||||
public AppInfo data;
|
||||
public ArrayList<AppInfo> data;
|
||||
|
||||
public AppInfo getData() {
|
||||
public ArrayList<AppInfo> getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(AppInfo data) {
|
||||
public void setData(ArrayList<AppInfo> data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user