| | |
| | | /** 车辆ID */ |
| | | private Long vehicleId; |
| | | |
| | | /** 旧系统车辆ID(SQL Server CarID) */ |
| | | @Excel(name = "旧系统车辆ID") |
| | | private Integer carId; |
| | | |
| | | /** 设备ID */ |
| | | @Excel(name = "设备ID") |
| | | private String deviceId; |
| | |
| | | private Long deptId; |
| | | |
| | | /** 归属部门名称 */ |
| | | @Excel(name = "归属部门名称") |
| | | @Excel(name = "归属部门") |
| | | private String deptName; |
| | | |
| | | public void setVehicleId(Long vehicleId) { |
| | |
| | | |
| | | public Long getVehicleId() { |
| | | return vehicleId; |
| | | } |
| | | |
| | | public void setCarId(Integer carId) { |
| | | this.carId = carId; |
| | | } |
| | | |
| | | public Integer getCarId() { |
| | | return carId; |
| | | } |
| | | |
| | | public void setDeviceId(String deviceId) { |
| | |
| | | public String toString() { |
| | | return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("vehicleId", getVehicleId()) |
| | | .append("carId", getCarId()) |
| | | .append("deviceId", getDeviceId()) |
| | | .append("vehicleNo", getVehicleNo()) |
| | | .append("vehicleType", getVehicleType()) |