package com.java110.dto.machine;
|
|
/**
|
* @ClassName MachineUserResultDto
|
* @Description TODO
|
* @Author wuxw
|
* @Date 2020/6/5 8:33
|
* @Version 1.0
|
* add by wuxw 2020/6/5
|
**/
|
public class CarResultDto {
|
|
private String communityId;
|
|
private String communityName;
|
|
private String carId;
|
|
private String carNum;
|
|
private String carBrand;
|
|
private String carType;
|
private String carColor;
|
|
private String name;
|
|
private String startTime;
|
|
private String endTime;
|
|
private String remarks;
|
|
private String phone;
|
|
private String num;
|
|
private String paId;
|
|
private String areaNum;
|
public String getAreaNum() {
|
return areaNum;
|
}
|
|
public void setAreaNum(String areaNum) {
|
this.areaNum = areaNum;
|
}
|
|
|
public String getCarId() {
|
return carId;
|
}
|
|
public void setCarId(String carId) {
|
this.carId = carId;
|
}
|
|
public String getCarNum() {
|
return carNum;
|
}
|
|
public void setCarNum(String carNum) {
|
this.carNum = carNum;
|
}
|
|
public String getCarBrand() {
|
return carBrand;
|
}
|
|
public void setCarBrand(String carBrand) {
|
this.carBrand = carBrand;
|
}
|
|
public String getCarType() {
|
return carType;
|
}
|
|
public void setCarType(String carType) {
|
this.carType = carType;
|
}
|
|
public String getCarColor() {
|
return carColor;
|
}
|
|
public void setCarColor(String carColor) {
|
this.carColor = carColor;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getStartTime() {
|
return startTime;
|
}
|
|
public void setStartTime(String startTime) {
|
this.startTime = startTime;
|
}
|
|
public String getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(String endTime) {
|
this.endTime = endTime;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks;
|
}
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getCommunityName() {
|
return communityName;
|
}
|
|
public void setCommunityName(String communityName) {
|
this.communityName = communityName;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public String getNum() {
|
return num;
|
}
|
|
public void setNum(String num) {
|
this.num = num;
|
}
|
|
public String getPaId() {
|
return paId;
|
}
|
|
public void setPaId(String paId) {
|
this.paId = paId;
|
}
|
|
}
|