Commit ccf0d840 by 杨浩

车辆信息添加

parent 2777caee
...@@ -73,4 +73,20 @@ public class VehicleInfoRespVO { ...@@ -73,4 +73,20 @@ public class VehicleInfoRespVO {
@ExcelProperty("创建人") @ExcelProperty("创建人")
private String creator; private String creator;
@Schema(description = "车架号")
private String frameNumber;
@Schema(description = "车辆品牌")
private String vehicleBrand;
@Schema(description = "保险有效期开始")
private String insuranceBeginTime;
@Schema(description = "保险有效期结束")
private String insuranceEndTime;
@Schema(description = "车辆图片")
private String vehicleImage;
} }
\ No newline at end of file
...@@ -29,4 +29,20 @@ public class VehicleInfoSaveReqVO { ...@@ -29,4 +29,20 @@ public class VehicleInfoSaveReqVO {
@Schema(description = "备注", example = "你猜") @Schema(description = "备注", example = "你猜")
private String remark; private String remark;
@Schema(description = "车架号")
private String frameNumber;
@Schema(description = "车辆品牌")
private String vehicleBrand;
@Schema(description = "保险有效期开始")
private String insuranceBeginTime;
@Schema(description = "保险有效期结束")
private String insuranceEndTime;
@Schema(description = "车辆图片")
private String vehicleImage;
} }
\ No newline at end of file
...@@ -77,5 +77,24 @@ public class VehicleInfoDO extends BaseDO { ...@@ -77,5 +77,24 @@ public class VehicleInfoDO extends BaseDO {
*/ */
private String remark; private String remark;
/**
* 车架号
*/
private String frameNumber;
/**
* 车辆品牌
*/
private String vehicleBrand;
/**
* 保险有效期开始
*/
private String insuranceBeginTime;
/**
* 保险有效期结束
*/
private String insuranceEndTime;
/**
* 车辆图片
*/
private String vehicleImage;
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment