| | |
| | | @Excel(name = "状态", readConverterExp = "0=正常,1=停用") |
| | | private String status; |
| | | |
| | | /** 平台标识 */ |
| | | @Excel(name = "平台标识") |
| | | private String platformCode; |
| | | |
| | | /** 归属部门ID */ |
| | | @Excel(name = "归属部门ID") |
| | | private Long deptId; |
| | | |
| | | /** 归属部门名称 */ |
| | | @Excel(name = "归属部门") |
| | | private String deptName; |
| | | |
| | | public void setVehicleId(Long vehicleId) { |
| | | this.vehicleId = vehicleId; |
| | | } |
| | |
| | | return status; |
| | | } |
| | | |
| | | public String getPlatformCode() { |
| | | return platformCode; |
| | | } |
| | | |
| | | public void setPlatformCode(String platformCode) { |
| | | this.platformCode = platformCode; |
| | | } |
| | | |
| | | public Long getDeptId() { |
| | | return deptId; |
| | | } |
| | | |
| | | public void setDeptId(Long deptId) { |
| | | this.deptId = deptId; |
| | | } |
| | | |
| | | public String getDeptName() { |
| | | return deptName; |
| | | } |
| | | |
| | | public void setDeptName(String deptName) { |
| | | this.deptName = deptName; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) |
| | |
| | | .append("vehicleBrand", getVehicleBrand()) |
| | | .append("vehicleModel", getVehicleModel()) |
| | | .append("status", getStatus()) |
| | | .append("platformCode", getPlatformCode()) |
| | | .append("deptId", getDeptId()) |
| | | .append("deptName", getDeptName()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("updateBy", getUpdateBy()) |