修改请求参数

This commit is contained in:
lixiaopeng
2022-06-27 11:14:45 +08:00
committed by liujing
parent 8538bab943
commit 6914aa8b8e
5 changed files with 45 additions and 18 deletions

View File

@@ -20,6 +20,7 @@ public class AppInfo implements Serializable {
private int version_code;
private String version_name;
private String create_time;
private String car_type;
public IdInfo get_id() {
return _id;
@@ -117,21 +118,30 @@ public class AppInfo implements Serializable {
this.create_time = create_time;
}
public String getCar_type() {
return car_type;
}
public void setCar_type(String car_type) {
this.car_type = car_type;
}
@Override
public String toString() {
return "AppInfo{" +
"_id=" + _id +
", bk_inst_id='" + bk_inst_id + '\'' +
", bk_inst_id=" + bk_inst_id +
", bk_inst_name='" + bk_inst_name + '\'' +
", bk_supplier_account='" + bk_supplier_account + '\'' +
", screen_type=" + screen_type +
", screen_type='" + screen_type + '\'' +
", sn='" + sn + '\'' +
", last_time=" + last_time +
", 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 +
", create_time='" + create_time + '\'' +
", car_type='" + car_type + '\'' +
'}';
}
}