| | |
| | | */ |
| | | package org.springblade.modules.applicationCarChange.vo; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.springblade.modules.application.entity.CarEntity; |
| | | import org.springblade.modules.applicationCarChange.entity.ApplicationCarChangeEntity; |
| | | import org.springblade.core.tool.node.INode; |
| | | import lombok.Data; |
| | |
| | | public class ApplicationCarChangeVO extends ApplicationCarChangeEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | private CarEntity carEntity; |
| | | |
| | | /** |
| | | * 车牌号 |
| | | */ |
| | | private String carLicense; |
| | | /** |
| | | * 厂牌型号 |
| | | */ |
| | | private String carModel; |
| | | /** |
| | | * 挂车牌号 |
| | | */ |
| | | private String trailerLicense; |
| | | /** |
| | | * 挂车厂牌型号 |
| | | */ |
| | | private String trailerModel; |
| | | /** |
| | | * 装备质量 |
| | | */ |
| | | private Double equipmentWeight; |
| | | /** |
| | | * 轴数 |
| | | */ |
| | | private Integer shaftNumber; |
| | | /** |
| | | * 轮胎数 |
| | | */ |
| | | private Integer tireNumber; |
| | | /** |
| | | * 轴距 |
| | | */ |
| | | private String wheelbase; |
| | | } |