Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
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
1
Merge Requests
1
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
haoban3.0
haoban-manage3.0
Commits
52914f6f
Commit
52914f6f
authored
Mar 08, 2023
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单
parent
ca4b65aa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
1 deletions
+60
-1
OrderDetailItemVO.java
...com/gic/haoban/manage/web/vo/order/OrderDetailItemVO.java
+35
-1
OrderListItemVO.java
...a/com/gic/haoban/manage/web/vo/order/OrderListItemVO.java
+25
-0
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/vo/order/OrderDetailItemVO.java
View file @
52914f6f
...
...
@@ -55,7 +55,41 @@ public class OrderDetailItemVO implements Serializable {
*/
private
Double
payAmount
;
// 物流ID
private
String
logisticsId
;
/**
* 是否有退款 0无退款 1退款待处理 2成功 3退款关闭 4待买家退货 5待商家收货 6拒绝退款
*/
private
Integer
refundStatus
;
/**
* 是否有换货 0无 1换货中 2成功 3失败
*/
private
Integer
exchangeStatus
;
public
String
getLogisticsId
()
{
return
logisticsId
;
}
public
Integer
getRefundStatus
()
{
return
refundStatus
;
}
public
Integer
getExchangeStatus
()
{
return
exchangeStatus
;
}
public
void
setLogisticsId
(
String
logisticsId
)
{
this
.
logisticsId
=
logisticsId
;
}
public
void
setRefundStatus
(
Integer
refundStatus
)
{
this
.
refundStatus
=
refundStatus
;
}
public
void
setExchangeStatus
(
Integer
exchangeStatus
)
{
this
.
exchangeStatus
=
exchangeStatus
;
}
public
String
getOrderItemId
()
{
return
orderItemId
;
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/vo/order/OrderListItemVO.java
View file @
52914f6f
...
...
@@ -61,6 +61,31 @@ public class OrderListItemVO implements Serializable {
// 物流ID
private
String
logisticsId
;
/**
* 是否有退款 0无退款 1退款待处理 2成功 3退款关闭 4待买家退货 5待商家收货 6拒绝退款
*/
private
Integer
refundStatus
;
/**
* 是否有换货 0无 1换货中 2成功 3失败
*/
private
Integer
exchangeStatus
;
public
Integer
getRefundStatus
()
{
return
refundStatus
;
}
public
Integer
getExchangeStatus
()
{
return
exchangeStatus
;
}
public
void
setRefundStatus
(
Integer
refundStatus
)
{
this
.
refundStatus
=
refundStatus
;
}
public
void
setExchangeStatus
(
Integer
exchangeStatus
)
{
this
.
exchangeStatus
=
exchangeStatus
;
}
public
String
getLogisticsId
()
{
return
logisticsId
;
}
...
...
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