This commit is contained in:
PQZ 2025-02-11 15:24:53 +08:00
parent 05a999cc96
commit b1bc2286b2

View File

@ -7,6 +7,7 @@ import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
/** /**
@ -23,6 +24,8 @@ public class DriveSchoolCar extends TenantBaDO
/** 主键id */ /** 主键id */
private Long id; private Long id;
/**封面图*/
private String avatar;
/** 车辆品牌 */ /** 车辆品牌 */
@Excel(name = "车辆品牌") @Excel(name = "车辆品牌")
private String brand; private String brand;
@ -82,6 +85,8 @@ public class DriveSchoolCar extends TenantBaDO
/** 行驶证相片 */ /** 行驶证相片 */
private String drivingLicence; private String drivingLicence;
/** 其他相片 */
private String otherPhoto;
/** 运营证 */ /** 运营证 */
private String operationCertificate; private String operationCertificate;
@ -95,4 +100,19 @@ public class DriveSchoolCar extends TenantBaDO
@JsonFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "二维日期", width = 30, dateFormat = "yyyy-MM-dd") @Excel(name = "二维日期", width = 30, dateFormat = "yyyy-MM-dd")
private Date repairDate; private Date repairDate;
/** 最近保养日期 */
@JsonFormat(pattern = "yyyy-MM-dd")
private Date upkeepRecentTime;
/** 最近保养里程 */
private BigDecimal upkeepRecentMileage;
/** 下次保养日期 */
@JsonFormat(pattern = "yyyy-MM-dd")
private Date upkeepNextTime;
/** 下次保养里程 */
private BigDecimal upkeepNextMileage;
/** 交强险 */
private BigDecimal compulsoryIns;
/** 商业险 */
private BigDecimal busiIns;
} }