This commit is contained in:
PQZ 2025-02-10 17:43:06 +08:00
parent 2a23b9ecd9
commit 2f4ad45d4c
2 changed files with 10 additions and 6 deletions

View File

@ -29,6 +29,10 @@ public class DlDriveSchoolStudent extends TenantBaseDO {
* 姓名
*/
private String name;
/**
* 头像
*/
private String avatar;
/**
* 年龄
*/

View File

@ -23,9 +23,6 @@ public class DriveSchoolCar extends TenantBaDO
/** 主键id */
private Long id;
/** 机构id */
private Long deptId;
/** 车辆品牌 */
@Excel(name = "车辆品牌")
private String brand;
@ -33,14 +30,17 @@ public class DriveSchoolCar extends TenantBaDO
/** 车辆型号 */
@Excel(name = "车辆型号")
private String carModel;
/** 车辆所属课程类型 */
private String courseType;
/** 车架号 */
private String frameNumber;
/** 发动机号码 */
private String engineNumber;
/** 车牌号码 */
@Excel(name = "车牌号码")
private String carNo;
/** 车辆照片 */
private String carPhoto;
/** 初登日期 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "初登日期", width = 30, dateFormat = "yyyy-MM-dd")