Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-api-boot-master
Commits
741af122
Commit
741af122
authored
Sep 09, 2024
by
zhengyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增字段定义错误修复
parent
5778c2c1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
8 deletions
+18
-8
OrderDO.java
...oder/yudao/module/order/dal/dataobject/order/OrderDO.java
+11
-2
OrderBackVO.java
...a/cn/iocoder/yudao/module/order/vo/order/OrderBackVO.java
+7
-6
No files found.
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/dal/dataobject/order/OrderDO.java
View file @
741af122
...
...
@@ -409,8 +409,17 @@ public class OrderDO extends BaseDO {
@ApiModelProperty
(
value
=
"收货方式:1 自提 2 送货上门 "
)
private
Integer
harvestMethod
;
@ApiModelProperty
(
value
=
"送货地址 "
)
private
String
address
;
@ApiModelProperty
(
value
=
"收货地址的国家"
)
private
Long
country
;
@ApiModelProperty
(
value
=
"收货地址的省"
)
private
Long
province
;
@ApiModelProperty
(
value
=
"收货地址的市"
)
private
Long
city
;
@ApiModelProperty
(
value
=
"收货地址"
)
private
String
consigneeAddress
;
/**
* 入仓时间
*/
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/order/OrderBackVO.java
View file @
741af122
...
...
@@ -341,12 +341,6 @@ public class OrderBackVO {
@ExcelProperty
(
"送货时间"
)
private
Date
deliveryDate
;
@ApiModelProperty
(
value
=
"收货方式:1 自提 2 送货上门 "
)
private
Integer
harvestMethod
;
@ApiModelProperty
(
value
=
"收货地址"
)
private
String
consigneeAddress
;
@ExcelProperty
(
"入仓时间"
)
@DateTimeFormat
(
pattern
=
FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND
)
@ApiModelProperty
(
value
=
"入仓时间"
)
...
...
@@ -419,6 +413,9 @@ public class OrderBackVO {
@ApiModelProperty
(
value
=
"发货人信息"
)
private
OrderConsignorBackVO
consignorVO
;
@ApiModelProperty
(
value
=
"收货方式:1 自提 2 送货上门 "
)
private
Integer
harvestMethod
;
@ApiModelProperty
(
value
=
"收货地址的国家"
)
private
Long
country
;
...
...
@@ -428,6 +425,10 @@ public class OrderBackVO {
@ApiModelProperty
(
value
=
"收货地址的市"
)
private
Long
city
;
@ApiModelProperty
(
value
=
"收货地址"
)
private
String
consigneeAddress
;
@ApiModelProperty
(
value
=
"收货客户id"
,
required
=
true
)
@NotNull
(
message
=
"收货客户id不能为空"
)
private
Long
consigneeId
;
...
...
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