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
b0a60d60
Commit
b0a60d60
authored
Feb 18, 2025
by
Smile
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
集运基础功能代码及sql代码
parent
bda47b28
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
193 additions
and
42 deletions
+193
-42
20250218lh.sql
sql/cons_sql/20250218lh.sql
+84
-0
ConsDO.java
...ocoder/yudao/module/order/dal/dataobject/cons/ConsDO.java
+12
-0
ConsMapper.java
...iocoder/yudao/module/order/dal/mysql/cons/ConsMapper.java
+66
-42
ConsBackVO.java
...ava/cn/iocoder/yudao/module/order/vo/cons/ConsBackVO.java
+12
-0
ConsBaseVO.java
...ava/cn/iocoder/yudao/module/order/vo/cons/ConsBaseVO.java
+10
-0
ConsQueryVO.java
...va/cn/iocoder/yudao/module/order/vo/cons/ConsQueryVO.java
+9
-0
No files found.
sql/cons_sql/20250218lh.sql
0 → 100644
View file @
b0a60d60
drop
table
if
exists
ecw_cons
;
create
table
ecw_cons
(
id
bigint
not
null
,
cons_num
varchar
(
64
)
comment
'包裹编号'
,
customer_id
bigint
comment
'发件客户ID'
,
customer_number
varchar
(
50
)
comment
'发件客户编号'
,
transport_id
int
comment
'运输方式,来自字典的值'
,
order_id
bigint
comment
'订单ID,关联订单表'
,
platform_id
bigint
comment
'平台ID,关联平台表数据,为后面系统对接预留字段'
,
platform_order_sn
varchar
(
50
)
comment
'平台订单号'
,
need_inspect
int
comment
'是否需要验货,0否,1是'
,
inspect_status
int
comment
'验货状态,来自字典表cons_inspect_status ,0 未开始,1验货中、2完成验货'
,
status
int
comment
'包裹状态,来自字典表,cons_status'
,
express_id
bigint
comment
'快递公司ID,对应快递公司表'
,
express_no
varchar
(
30
)
comment
'快递单号'
,
ware_id
bigint
comment
'仓库ID,关联ecw_warehouse表'
,
area_id
bigint
comment
'库域ID,关联ecw_warehouse_area表'
,
position_id
bigint
comment
'仓位ID,关联ecw_warehouse_area_position'
,
warehouse_line_id
bigint
comment
'线路ID'
,
worth
decimal
(
15
,
2
)
comment
'货值'
,
worth_currency
int
default
3
comment
'货值单位,默认为3,人民币'
,
wat_etime
datetime
comment
'预计到仓时间'
,
wat_time
datetime
,
signed
bit
not
null
default
'0'
comment
'是否被签收,0未签收,1已签收'
,
signer
bigint
comment
'签收人'
,
signed_time
datetime
comment
'签收时间'
,
signed_remarks
varchar
(
255
)
comment
'签收备注'
,
sum_quantity
int
comment
'数量'
,
op_source
int
(
3
)
default
1
comment
'区分包裹是由谁创建的,关联字典表 cons_op_source,可区分为后台创建、客户web端、客户app端、客户H5端、仓库创建及其他,默认为1 客户app端'
,
consignee_city_id
bigint
comment
'目的城市ID,关联ecw_region表ID'
,
consignee_country_id
bigint
comment
'目的国ID,关联ecw_region表ID'
,
consignee_warehouse_id
bigint
comment
'目的仓ID,关联ecw_warehouse表ID'
,
consignee_address
varchar
(
255
),
remarks
varchar
(
255
)
comment
'备注'
,
is_pickout
int
default
0
comment
'是否已拣出,0否,1是'
,
deleted
bit
default
0
,
creator
varchar
(
32
),
update_time
datetime
,
create_time
datetime
,
updater
varchar
(
32
),
primary
key
(
id
)
);
alter
table
ecw_cons
comment
'集运包裹主表'
;
drop
table
if
exists
ecw_cons_item
;
create
table
ecw_cons_item
(
id
bigint
not
null
,
cons_id
bigint
not
null
,
prod_id
bigint
comment
'商品ID'
,
brand
bigint
comment
'品牌'
,
brand_type
tinyint
comment
'来自字典表,brand_type 0 无牌 1 有牌 2 中性'
,
material
varchar
(
255
)
comment
'材质'
,
quantity
decimal
(
15
,
2
)
comment
'数量'
,
inspection_num
int
comment
'验货件数'
,
inspection_unit
char
(
10
)
comment
'验货商品单位'
,
inspection_quantity
decimal
(
15
,
2
)
comment
'验货数量'
,
inspection_prod_attr_ids
varchar
(
50
)
comment
'验货商品特性(可选多个特性ID)'
,
inspection_box_gauge
char
(
100
)
comment
'验货商品箱规'
,
inspection_volume
decimal
(
15
,
2
)
comment
'验货体积'
,
inspection_weight
decimal
(
15
,
2
)
comment
'验货重量'
,
inspection_worth
decimal
(
15
,
2
)
comment
'验货货值'
,
inspection_worth_currency
int
comment
'验货商品货值单位,关联货币表'
,
inspection_usage_ids
varchar
(
32
)
comment
'验货商品用途'
,
inspection_json
json
comment
'验货明细'
,
warehouse_id
bigint
comment
'仓库id'
,
area_id
bigint
comment
'库域ID'
,
position_id
bigint
comment
'库位ID'
,
deleted
bit
not
null
default
'0'
,
creator
varchar
(
32
)
not
null
,
create_time
datetime
not
null
,
updater
varchar
(
32
),
update_time
datetime
,
primary
key
(
id
)
);
alter
table
ecw_cons_item
comment
'集运包裹明细表'
;
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/dal/dataobject/cons/ConsDO.java
View file @
b0a60d60
...
@@ -28,6 +28,10 @@ public class ConsDO extends BaseDO {
...
@@ -28,6 +28,10 @@ public class ConsDO extends BaseDO {
*
*
*/
*/
private
Long
customerId
;
private
Long
customerId
;
/**
* 包裹编号
*/
private
String
consNum
;
/**
/**
* 客户编号
* 客户编号
*/
*/
...
@@ -64,6 +68,10 @@ public class ConsDO extends BaseDO {
...
@@ -64,6 +68,10 @@ public class ConsDO extends BaseDO {
* 快递单号
* 快递单号
*/
*/
private
String
expressNo
;
private
String
expressNo
;
/**
* 验货状态,来自字典表cons_inspect_status ,0 未开始,1验货中、2完成验货
*/
private
Integer
inspectStatus
;
/**
/**
* 仓库ID
* 仓库ID
*/
*/
...
@@ -140,6 +148,10 @@ public class ConsDO extends BaseDO {
...
@@ -140,6 +148,10 @@ public class ConsDO extends BaseDO {
*
*
*/
*/
private
String
consigneeAddress
;
private
String
consigneeAddress
;
/**
* 是否已拣出,0否,1是
*/
private
Integer
isPickout
;
}
}
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/dal/mysql/cons/ConsMapper.java
View file @
b0a60d60
...
@@ -23,26 +23,38 @@ public interface ConsMapper extends AbstractMapper<ConsDO> {
...
@@ -23,26 +23,38 @@ public interface ConsMapper extends AbstractMapper<ConsDO> {
ConsQueryVO
vo
=
(
ConsQueryVO
)
object
;
ConsQueryVO
vo
=
(
ConsQueryVO
)
object
;
return
selectPage
(
page
,
new
LambdaQuery
<
ConsDO
>()
return
selectPage
(
page
,
new
LambdaQuery
<
ConsDO
>()
.
eqIfPresent
(
ConsDO:
:
getCustomerId
,
vo
.
getCustomerId
())
.
eqIfPresent
(
ConsDO:
:
getCustomerId
,
vo
.
getCustomerId
())
.
eqIfPresent
(
ConsDO:
:
getConsNum
,
vo
.
getConsNum
())
.
eqIfPresent
(
ConsDO:
:
getCustomerNumber
,
vo
.
getCustomerNumber
())
.
eqIfPresent
(
ConsDO:
:
getCustomerNumber
,
vo
.
getCustomerNumber
())
.
eqIfPresent
(
ConsDO:
:
getTransportId
,
vo
.
getTransportId
())
.
eqIfPresent
(
ConsDO:
:
getTransportId
,
vo
.
getTransportId
())
.
eqIfPresent
(
ConsDO:
:
getOrderId
,
vo
.
getOrderId
())
.
eqIfPresent
(
ConsDO:
:
getOrderId
,
vo
.
getOrderId
())
.
eqIfPresent
(
ConsDO:
:
getPlatformId
,
vo
.
getPlatformId
())
.
eqIfPresent
(
ConsDO:
:
getPlatformId
,
vo
.
getPlatformId
())
.
eqIfPresent
(
ConsDO:
:
getPlatformOrderSn
,
vo
.
getPlatformOrderSn
())
.
eqIfPresent
(
ConsDO:
:
getPlatformOrderSn
,
vo
.
getPlatformOrderSn
())
.
eqIfPresent
(
ConsDO:
:
getNeedInspect
,
vo
.
getNeedInspect
())
.
eqIfPresent
(
ConsDO:
:
getStatus
,
vo
.
getStatus
())
.
eqIfPresent
(
ConsDO:
:
getStatus
,
vo
.
getStatus
())
.
eqIfPresent
(
ConsDO:
:
getExpressId
,
vo
.
getExpressId
())
.
eqIfPresent
(
ConsDO:
:
getExpressId
,
vo
.
getExpressId
())
.
eqIfPresent
(
ConsDO:
:
getExpressNo
,
vo
.
getExpressNo
())
.
eqIfPresent
(
ConsDO:
:
getExpressNo
,
vo
.
getExpressNo
())
.
eqIfPresent
(
ConsDO:
:
getInspectStatus
,
vo
.
getInspectStatus
())
.
eqIfPresent
(
ConsDO:
:
getWareId
,
vo
.
getWareId
())
.
eqIfPresent
(
ConsDO:
:
getWareId
,
vo
.
getWareId
())
.
eqIfPresent
(
ConsDO:
:
getWorth
,
vo
.
getWorth
())
.
eqIfPresent
(
ConsDO:
:
getWorth
,
vo
.
getWorth
())
.
eqIfPresent
(
ConsDO:
:
getWorthCurrency
,
vo
.
getWorthCurrency
())
.
eqIfPresent
(
ConsDO:
:
getWorthCurrency
,
vo
.
getWorthCurrency
())
.
eqIfPresent
(
ConsDO:
:
getAreaId
,
vo
.
getAreaId
())
.
betweenIfPresent
(
ConsDO:
:
getWatEtime
,
vo
.
getBeginWatEtime
(),
vo
.
getEndWatEtime
())
.
betweenIfPresent
(
ConsDO:
:
getWatEtime
,
vo
.
getBeginWatEtime
(),
vo
.
getEndWatEtime
())
.
eqIfPresent
(
ConsDO:
:
getPositionId
,
vo
.
getPositionId
())
.
betweenIfPresent
(
ConsDO:
:
getWatTime
,
vo
.
getBeginWatTime
(),
vo
.
getEndWatTime
())
.
betweenIfPresent
(
ConsDO:
:
getWatTime
,
vo
.
getBeginWatTime
(),
vo
.
getEndWatTime
())
.
eqIfPresent
(
ConsDO:
:
getWarehouseLineId
,
vo
.
getWarehouseLineId
())
.
eqIfPresent
(
ConsDO:
:
getSigned
,
vo
.
getSigned
())
.
eqIfPresent
(
ConsDO:
:
getSigned
,
vo
.
getSigned
())
.
betweenIfPresent
(
ConsDO:
:
getSignedTime
,
vo
.
getBeginSignedTime
(),
vo
.
getEndSignedTime
())
.
betweenIfPresent
(
ConsDO:
:
getSignedTime
,
vo
.
getBeginSignedTime
(),
vo
.
getEndSignedTime
())
.
eqIfPresent
(
ConsDO:
:
getSignedRemarks
,
vo
.
getSignedRemarks
())
.
eqIfPresent
(
ConsDO:
:
getSignedRemarks
,
vo
.
getSignedRemarks
())
.
eqIfPresent
(
ConsDO:
:
getSumQuantity
,
vo
.
getSumQuantity
())
.
eqIfPresent
(
ConsDO:
:
getSumQuantity
,
vo
.
getSumQuantity
())
.
eqIfPresent
(
ConsDO:
:
getOpSource
,
vo
.
getOpSource
())
.
eqIfPresent
(
ConsDO:
:
getOpSource
,
vo
.
getOpSource
())
.
eqIfPresent
(
ConsDO:
:
getSigner
,
vo
.
getSigner
())
.
eqIfPresent
(
ConsDO:
:
getRemarks
,
vo
.
getRemarks
())
.
eqIfPresent
(
ConsDO:
:
getRemarks
,
vo
.
getRemarks
())
.
betweenIfPresent
(
ConsDO:
:
getCreateTime
,
vo
.
getBeginCreateTime
(),
vo
.
getEndCreateTime
())
.
betweenIfPresent
(
ConsDO:
:
getCreateTime
,
vo
.
getBeginCreateTime
(),
vo
.
getEndCreateTime
())
.
eqIfPresent
(
ConsDO:
:
getConsigneeCityId
,
vo
.
getConsigneeCityId
())
.
eqIfPresent
(
ConsDO:
:
getConsigneeCountryId
,
vo
.
getConsigneeCountryId
())
.
eqIfPresent
(
ConsDO:
:
getConsigneeWarehouseId
,
vo
.
getConsigneeWarehouseId
())
.
eqIfPresent
(
ConsDO:
:
getConsigneeAddress
,
vo
.
getConsigneeAddress
())
.
eqIfPresent
(
ConsDO:
:
getIsPickout
,
vo
.
getIsPickout
())
.
orderByDesc
(
ConsDO:
:
getId
));
.
orderByDesc
(
ConsDO:
:
getId
));
}
}
...
@@ -54,26 +66,38 @@ public interface ConsMapper extends AbstractMapper<ConsDO> {
...
@@ -54,26 +66,38 @@ public interface ConsMapper extends AbstractMapper<ConsDO> {
ConsQueryVO
vo
=
(
ConsQueryVO
)
object
;
ConsQueryVO
vo
=
(
ConsQueryVO
)
object
;
return
selectList
(
new
LambdaQuery
<
ConsDO
>()
return
selectList
(
new
LambdaQuery
<
ConsDO
>()
.
eqIfPresent
(
ConsDO:
:
getCustomerId
,
vo
.
getCustomerId
())
.
eqIfPresent
(
ConsDO:
:
getCustomerId
,
vo
.
getCustomerId
())
.
eqIfPresent
(
ConsDO:
:
getConsNum
,
vo
.
getConsNum
())
.
eqIfPresent
(
ConsDO:
:
getCustomerNumber
,
vo
.
getCustomerNumber
())
.
eqIfPresent
(
ConsDO:
:
getCustomerNumber
,
vo
.
getCustomerNumber
())
.
eqIfPresent
(
ConsDO:
:
getTransportId
,
vo
.
getTransportId
())
.
eqIfPresent
(
ConsDO:
:
getTransportId
,
vo
.
getTransportId
())
.
eqIfPresent
(
ConsDO:
:
getOrderId
,
vo
.
getOrderId
())
.
eqIfPresent
(
ConsDO:
:
getOrderId
,
vo
.
getOrderId
())
.
eqIfPresent
(
ConsDO:
:
getPlatformId
,
vo
.
getPlatformId
())
.
eqIfPresent
(
ConsDO:
:
getPlatformId
,
vo
.
getPlatformId
())
.
eqIfPresent
(
ConsDO:
:
getPlatformOrderSn
,
vo
.
getPlatformOrderSn
())
.
eqIfPresent
(
ConsDO:
:
getPlatformOrderSn
,
vo
.
getPlatformOrderSn
())
.
eqIfPresent
(
ConsDO:
:
getNeedInspect
,
vo
.
getNeedInspect
())
.
eqIfPresent
(
ConsDO:
:
getStatus
,
vo
.
getStatus
())
.
eqIfPresent
(
ConsDO:
:
getStatus
,
vo
.
getStatus
())
.
eqIfPresent
(
ConsDO:
:
getExpressId
,
vo
.
getExpressId
())
.
eqIfPresent
(
ConsDO:
:
getExpressId
,
vo
.
getExpressId
())
.
eqIfPresent
(
ConsDO:
:
getExpressNo
,
vo
.
getExpressNo
())
.
eqIfPresent
(
ConsDO:
:
getExpressNo
,
vo
.
getExpressNo
())
.
eqIfPresent
(
ConsDO:
:
getInspectStatus
,
vo
.
getInspectStatus
())
.
eqIfPresent
(
ConsDO:
:
getWareId
,
vo
.
getWareId
())
.
eqIfPresent
(
ConsDO:
:
getWareId
,
vo
.
getWareId
())
.
eqIfPresent
(
ConsDO:
:
getWorth
,
vo
.
getWorth
())
.
eqIfPresent
(
ConsDO:
:
getWorth
,
vo
.
getWorth
())
.
eqIfPresent
(
ConsDO:
:
getWorthCurrency
,
vo
.
getWorthCurrency
())
.
eqIfPresent
(
ConsDO:
:
getWorthCurrency
,
vo
.
getWorthCurrency
())
.
eqIfPresent
(
ConsDO:
:
getAreaId
,
vo
.
getAreaId
())
.
betweenIfPresent
(
ConsDO:
:
getWatEtime
,
vo
.
getBeginWatEtime
(),
vo
.
getEndWatEtime
())
.
betweenIfPresent
(
ConsDO:
:
getWatEtime
,
vo
.
getBeginWatEtime
(),
vo
.
getEndWatEtime
())
.
eqIfPresent
(
ConsDO:
:
getPositionId
,
vo
.
getPositionId
())
.
betweenIfPresent
(
ConsDO:
:
getWatTime
,
vo
.
getBeginWatTime
(),
vo
.
getEndWatTime
())
.
betweenIfPresent
(
ConsDO:
:
getWatTime
,
vo
.
getBeginWatTime
(),
vo
.
getEndWatTime
())
.
eqIfPresent
(
ConsDO:
:
getWarehouseLineId
,
vo
.
getWarehouseLineId
())
.
eqIfPresent
(
ConsDO:
:
getSigned
,
vo
.
getSigned
())
.
eqIfPresent
(
ConsDO:
:
getSigned
,
vo
.
getSigned
())
.
betweenIfPresent
(
ConsDO:
:
getSignedTime
,
vo
.
getBeginSignedTime
(),
vo
.
getEndSignedTime
())
.
betweenIfPresent
(
ConsDO:
:
getSignedTime
,
vo
.
getBeginSignedTime
(),
vo
.
getEndSignedTime
())
.
eqIfPresent
(
ConsDO:
:
getSignedRemarks
,
vo
.
getSignedRemarks
())
.
eqIfPresent
(
ConsDO:
:
getSignedRemarks
,
vo
.
getSignedRemarks
())
.
eqIfPresent
(
ConsDO:
:
getSumQuantity
,
vo
.
getSumQuantity
())
.
eqIfPresent
(
ConsDO:
:
getSumQuantity
,
vo
.
getSumQuantity
())
.
eqIfPresent
(
ConsDO:
:
getOpSource
,
vo
.
getOpSource
())
.
eqIfPresent
(
ConsDO:
:
getOpSource
,
vo
.
getOpSource
())
.
eqIfPresent
(
ConsDO:
:
getSigner
,
vo
.
getSigner
())
.
eqIfPresent
(
ConsDO:
:
getRemarks
,
vo
.
getRemarks
())
.
eqIfPresent
(
ConsDO:
:
getRemarks
,
vo
.
getRemarks
())
.
betweenIfPresent
(
ConsDO:
:
getCreateTime
,
vo
.
getBeginCreateTime
(),
vo
.
getEndCreateTime
())
.
betweenIfPresent
(
ConsDO:
:
getCreateTime
,
vo
.
getBeginCreateTime
(),
vo
.
getEndCreateTime
())
.
eqIfPresent
(
ConsDO:
:
getConsigneeCityId
,
vo
.
getConsigneeCityId
())
.
eqIfPresent
(
ConsDO:
:
getConsigneeCountryId
,
vo
.
getConsigneeCountryId
())
.
eqIfPresent
(
ConsDO:
:
getConsigneeWarehouseId
,
vo
.
getConsigneeWarehouseId
())
.
eqIfPresent
(
ConsDO:
:
getConsigneeAddress
,
vo
.
getConsigneeAddress
())
.
eqIfPresent
(
ConsDO:
:
getIsPickout
,
vo
.
getIsPickout
())
.
orderByDesc
(
ConsDO:
:
getId
));
.
orderByDesc
(
ConsDO:
:
getId
));
}
}
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/cons/ConsBackVO.java
View file @
b0a60d60
...
@@ -23,6 +23,10 @@ public class ConsBackVO {
...
@@ -23,6 +23,10 @@ public class ConsBackVO {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
private
Long
customerId
;
private
Long
customerId
;
@ExcelProperty
(
"包裹编号"
)
@ApiModelProperty
(
value
=
"包裹编号"
)
private
String
consNum
;
@ExcelProperty
(
"客户编号"
)
@ExcelProperty
(
"客户编号"
)
@ApiModelProperty
(
value
=
"客户编号"
)
@ApiModelProperty
(
value
=
"客户编号"
)
private
String
customerNumber
;
private
String
customerNumber
;
...
@@ -63,6 +67,10 @@ public class ConsBackVO {
...
@@ -63,6 +67,10 @@ public class ConsBackVO {
@ApiModelProperty
(
value
=
"快递单号"
)
@ApiModelProperty
(
value
=
"快递单号"
)
private
String
expressNo
;
private
String
expressNo
;
@ExcelProperty
(
"验货状态,来自字典表cons_inspect_status ,0 未开始,1验货中、2完成验货"
)
@ApiModelProperty
(
value
=
"验货状态,来自字典表cons_inspect_status ,0 未开始,1验货中、2完成验货"
)
private
Integer
inspectStatus
;
@ExcelProperty
(
"仓库ID"
)
@ExcelProperty
(
"仓库ID"
)
@ApiModelProperty
(
value
=
"仓库ID"
)
@ApiModelProperty
(
value
=
"仓库ID"
)
private
Long
wareId
;
private
Long
wareId
;
...
@@ -147,4 +155,8 @@ public class ConsBackVO {
...
@@ -147,4 +155,8 @@ public class ConsBackVO {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
private
String
consigneeAddress
;
private
String
consigneeAddress
;
@ExcelProperty
(
"是否已拣出,0否,1是"
)
@ApiModelProperty
(
value
=
"是否已拣出,0否,1是"
)
private
Integer
isPickout
;
}
}
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/cons/ConsBaseVO.java
View file @
b0a60d60
...
@@ -18,6 +18,9 @@ public class ConsBaseVO {
...
@@ -18,6 +18,9 @@ public class ConsBaseVO {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
private
Long
customerId
;
private
Long
customerId
;
@ApiModelProperty
(
value
=
"包裹编号"
)
private
String
consNum
;
@ApiModelProperty
(
value
=
"客户编号"
)
@ApiModelProperty
(
value
=
"客户编号"
)
private
String
customerNumber
;
private
String
customerNumber
;
...
@@ -45,6 +48,9 @@ public class ConsBaseVO {
...
@@ -45,6 +48,9 @@ public class ConsBaseVO {
@ApiModelProperty
(
value
=
"快递单号"
)
@ApiModelProperty
(
value
=
"快递单号"
)
private
String
expressNo
;
private
String
expressNo
;
@ApiModelProperty
(
value
=
"验货状态,来自字典表cons_inspect_status ,0 未开始,1验货中、2完成验货"
)
private
Integer
inspectStatus
;
@ApiModelProperty
(
value
=
"仓库ID"
)
@ApiModelProperty
(
value
=
"仓库ID"
)
private
Long
wareId
;
private
Long
wareId
;
...
@@ -106,4 +112,8 @@ public class ConsBaseVO {
...
@@ -106,4 +112,8 @@ public class ConsBaseVO {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
private
String
consigneeAddress
;
private
String
consigneeAddress
;
@ApiModelProperty
(
value
=
"是否已拣出,0否,1是"
)
private
Integer
isPickout
;
}
}
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/cons/ConsQueryVO.java
View file @
b0a60d60
...
@@ -14,6 +14,9 @@ public class ConsQueryVO {
...
@@ -14,6 +14,9 @@ public class ConsQueryVO {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
private
Long
customerId
;
private
Long
customerId
;
@ApiModelProperty
(
value
=
"包裹编号"
)
private
String
consNum
;
@ApiModelProperty
(
value
=
"客户编号"
)
@ApiModelProperty
(
value
=
"客户编号"
)
private
String
customerNumber
;
private
String
customerNumber
;
...
@@ -41,6 +44,9 @@ public class ConsQueryVO {
...
@@ -41,6 +44,9 @@ public class ConsQueryVO {
@ApiModelProperty
(
value
=
"快递单号"
)
@ApiModelProperty
(
value
=
"快递单号"
)
private
String
expressNo
;
private
String
expressNo
;
@ApiModelProperty
(
value
=
"验货状态,来自字典表cons_inspect_status ,0 未开始,1验货中、2完成验货"
)
private
Integer
inspectStatus
;
@ApiModelProperty
(
value
=
"仓库ID"
)
@ApiModelProperty
(
value
=
"仓库ID"
)
private
Long
wareId
;
private
Long
wareId
;
...
@@ -121,4 +127,7 @@ public class ConsQueryVO {
...
@@ -121,4 +127,7 @@ public class ConsQueryVO {
@ApiModelProperty
(
value
=
""
)
@ApiModelProperty
(
value
=
""
)
private
String
consigneeAddress
;
private
String
consigneeAddress
;
@ApiModelProperty
(
value
=
"是否已拣出,0否,1是"
)
private
Integer
isPickout
;
}
}
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