Merge branch 'driver' of http://122.51.230.86:3000/dianliang/lanan-system into driver
This commit is contained in:
commit
4a5a81f1d3
@ -45,6 +45,14 @@ public class DlDriveSchoolStudent extends TenantBaseDO {
|
||||
* 联系电话
|
||||
*/
|
||||
private String phone;
|
||||
/**
|
||||
* 来源(01驾校统招,02教练自招,03自来客户)
|
||||
*/
|
||||
private String source;
|
||||
/**
|
||||
* 来源id
|
||||
*/
|
||||
private Long sourceUserId;
|
||||
/**
|
||||
* 身份证号
|
||||
*/
|
||||
|
@ -7,6 +7,7 @@ import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
@ -23,6 +24,8 @@ public class DriveSchoolCar extends TenantBaDO
|
||||
/** 主键id */
|
||||
private Long id;
|
||||
|
||||
/**封面图*/
|
||||
private String avatar;
|
||||
/** 车辆品牌 */
|
||||
@Excel(name = "车辆品牌")
|
||||
private String brand;
|
||||
@ -82,6 +85,8 @@ public class DriveSchoolCar extends TenantBaDO
|
||||
|
||||
/** 行驶证相片 */
|
||||
private String drivingLicence;
|
||||
/** 其他相片 */
|
||||
private String otherPhoto;
|
||||
|
||||
/** 运营证 */
|
||||
private String operationCertificate;
|
||||
@ -95,4 +100,19 @@ public class DriveSchoolCar extends TenantBaDO
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "二维日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user