You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
1.6 KiB
Java

package com.rehome.zhdcoa.bean;
import java.util.List;
public class UpSJCPBean {
private String Total;
private List<RowsBean> Rows;
public String getTotal() {
return Total;
}
public void setTotal(String Total) {
this.Total = Total;
}
public List<RowsBean> getRows() {
return Rows;
}
public void setRows(List<RowsBean> Rows) {
this.Rows = Rows;
}
public static class RowsBean {
private String listid;
private String VEHICLEJSYNAME;
private String VehicleJsy;
private String VehiclePhone;
private String VehicleCh;
public String getListid() {
return listid;
}
public void setListid(String listid) {
this.listid = listid;
}
public String getVEHICLEJSYNAME() {
return VEHICLEJSYNAME;
}
public void setVEHICLEJSYNAME(String VEHICLEJSYNAME) {
this.VEHICLEJSYNAME = VEHICLEJSYNAME;
}
public String getVehicleJsy() {
return VehicleJsy;
}
public void setVehicleJsy(String VehicleJsy) {
this.VehicleJsy = VehicleJsy;
}
public String getVehiclePhone() {
return VehiclePhone;
}
public void setVehiclePhone(String VehiclePhone) {
this.VehiclePhone = VehiclePhone;
}
public String getVehicleCh() {
return VehicleCh;
}
public void setVehicleCh(String VehicleCh) {
this.VehicleCh = VehicleCh;
}
}
}