Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
foodNexus-admin
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
副食品筹措管理平台
foodNexus-admin
Commits
ccf0d840
Commit
ccf0d840
authored
Sep 19, 2025
by
杨浩
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
车辆信息添加
parent
2777caee
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
55 additions
and
1 deletions
+55
-1
foodnexus-module-mall/foodnexus-module-operations/src/main/java/cn/iocoder/foodnexus/module/operations/controller/admin/vehicleinfo/vo/VehicleInfoRespVO.java
+17
-0
foodnexus-module-mall/foodnexus-module-operations/src/main/java/cn/iocoder/foodnexus/module/operations/controller/admin/vehicleinfo/vo/VehicleInfoSaveReqVO.java
+17
-0
foodnexus-module-mall/foodnexus-module-operations/src/main/java/cn/iocoder/foodnexus/module/operations/dal/dataobject/vehicleinfo/VehicleInfoDO.java
+21
-1
No files found.
foodnexus-module-mall/foodnexus-module-operations/src/main/java/cn/iocoder/foodnexus/module/operations/controller/admin/vehicleinfo/vo/VehicleInfoRespVO.java
View file @
ccf0d840
...
@@ -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
foodnexus-module-mall/foodnexus-module-operations/src/main/java/cn/iocoder/foodnexus/module/operations/controller/admin/vehicleinfo/vo/VehicleInfoSaveReqVO.java
View file @
ccf0d840
...
@@ -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
foodnexus-module-mall/foodnexus-module-operations/src/main/java/cn/iocoder/foodnexus/module/operations/dal/dataobject/vehicleinfo/VehicleInfoDO.java
View file @
ccf0d840
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment