Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Y
yudao-cloud
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
hblj
yudao-cloud
Commits
8b111763
提交
8b111763
authored
4月 05, 2019
作者:
sin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
- 优化 命名错误,VO 改为 PO
上级
8680064f
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
34 行增加
和
34 行删除
+34
-34
OrderItemUpdatePO.java
.../iocoder/mall/order/application/po/OrderItemUpdatePO.java
+6
-6
OrderLogisticsPO.java
...n/iocoder/mall/order/application/po/OrderLogisticsPO.java
+8
-8
OrderPagePO.java
...ava/cn/iocoder/mall/order/application/po/OrderPagePO.java
+5
-5
OrderPageQueryPO.java
...n/iocoder/mall/order/application/po/OrderPageQueryPO.java
+15
-15
没有找到文件。
order/order-application/src/main/java/cn/iocoder/mall/order/application/
vo/OrderItemUpdateV
O.java
→
order/order-application/src/main/java/cn/iocoder/mall/order/application/
po/OrderItemUpdateP
O.java
浏览文件 @
8b111763
package
cn
.
iocoder
.
mall
.
order
.
application
.
v
o
;
package
cn
.
iocoder
.
mall
.
order
.
application
.
p
o
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
...
...
@@ -14,7 +14,7 @@ import java.io.Serializable;
* @time 2019-03-24 11:16
*/
@ApiModel
(
"订单item更新"
)
public
class
OrderItemUpdate
V
O
implements
Serializable
{
public
class
OrderItemUpdate
P
O
implements
Serializable
{
/**
* 编号
...
...
@@ -57,7 +57,7 @@ public class OrderItemUpdateVO implements Serializable {
return
id
;
}
public
OrderItemUpdate
V
O
setId
(
Integer
id
)
{
public
OrderItemUpdate
P
O
setId
(
Integer
id
)
{
this
.
id
=
id
;
return
this
;
}
...
...
@@ -66,7 +66,7 @@ public class OrderItemUpdateVO implements Serializable {
return
skuId
;
}
public
OrderItemUpdate
V
O
setSkuId
(
Integer
skuId
)
{
public
OrderItemUpdate
P
O
setSkuId
(
Integer
skuId
)
{
this
.
skuId
=
skuId
;
return
this
;
}
...
...
@@ -75,7 +75,7 @@ public class OrderItemUpdateVO implements Serializable {
return
quantity
;
}
public
OrderItemUpdate
V
O
setQuantity
(
Integer
quantity
)
{
public
OrderItemUpdate
P
O
setQuantity
(
Integer
quantity
)
{
this
.
quantity
=
quantity
;
return
this
;
}
...
...
@@ -84,7 +84,7 @@ public class OrderItemUpdateVO implements Serializable {
return
price
;
}
public
OrderItemUpdate
V
O
setPrice
(
Integer
price
)
{
public
OrderItemUpdate
P
O
setPrice
(
Integer
price
)
{
this
.
price
=
price
;
return
this
;
}
...
...
order/order-application/src/main/java/cn/iocoder/mall/order/application/
vo/OrderLogisticsV
O.java
→
order/order-application/src/main/java/cn/iocoder/mall/order/application/
po/OrderLogisticsP
O.java
浏览文件 @
8b111763
package
cn
.
iocoder
.
mall
.
order
.
application
.
v
o
;
package
cn
.
iocoder
.
mall
.
order
.
application
.
p
o
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
...
...
@@ -14,7 +14,7 @@ import java.io.Serializable;
* @time 2019-03-24 11:01
*/
@ApiModel
(
"订单物流信息"
)
public
class
OrderLogistics
V
O
implements
Serializable
{
public
class
OrderLogistics
P
O
implements
Serializable
{
/**
* 订单 id
...
...
@@ -70,7 +70,7 @@ public class OrderLogisticsVO implements Serializable {
return
id
;
}
public
OrderLogistics
V
O
setId
(
Integer
id
)
{
public
OrderLogistics
P
O
setId
(
Integer
id
)
{
this
.
id
=
id
;
return
this
;
}
...
...
@@ -79,7 +79,7 @@ public class OrderLogisticsVO implements Serializable {
return
areaNo
;
}
public
OrderLogistics
V
O
setAreaNo
(
String
areaNo
)
{
public
OrderLogistics
P
O
setAreaNo
(
String
areaNo
)
{
this
.
areaNo
=
areaNo
;
return
this
;
}
...
...
@@ -88,7 +88,7 @@ public class OrderLogisticsVO implements Serializable {
return
name
;
}
public
OrderLogistics
V
O
setName
(
String
name
)
{
public
OrderLogistics
P
O
setName
(
String
name
)
{
this
.
name
=
name
;
return
this
;
}
...
...
@@ -97,7 +97,7 @@ public class OrderLogisticsVO implements Serializable {
return
mobile
;
}
public
OrderLogistics
V
O
setMobile
(
String
mobile
)
{
public
OrderLogistics
P
O
setMobile
(
String
mobile
)
{
this
.
mobile
=
mobile
;
return
this
;
}
...
...
@@ -106,7 +106,7 @@ public class OrderLogisticsVO implements Serializable {
return
address
;
}
public
OrderLogistics
V
O
setAddress
(
String
address
)
{
public
OrderLogistics
P
O
setAddress
(
String
address
)
{
this
.
address
=
address
;
return
this
;
}
...
...
@@ -115,7 +115,7 @@ public class OrderLogisticsVO implements Serializable {
return
logisticsNo
;
}
public
OrderLogistics
V
O
setLogisticsNo
(
String
logisticsNo
)
{
public
OrderLogistics
P
O
setLogisticsNo
(
String
logisticsNo
)
{
this
.
logisticsNo
=
logisticsNo
;
return
this
;
}
...
...
order/order-application/src/main/java/cn/iocoder/mall/order/application/
vo/OrderPageV
O.java
→
order/order-application/src/main/java/cn/iocoder/mall/order/application/
po/OrderPageP
O.java
浏览文件 @
8b111763
package
cn
.
iocoder
.
mall
.
order
.
application
.
v
o
;
package
cn
.
iocoder
.
mall
.
order
.
application
.
p
o
;
import
cn.iocoder.mall.order.api.bo.OrderBO
;
import
io.swagger.annotations.ApiModel
;
...
...
@@ -14,7 +14,7 @@ import java.util.List;
* @time 2019-03-27 21:23
*/
@ApiModel
(
"订单VO"
)
public
class
OrderPage
V
O
implements
Serializable
{
public
class
OrderPage
P
O
implements
Serializable
{
/**
* 分页
...
...
@@ -45,7 +45,7 @@ public class OrderPageVO implements Serializable {
return
pageNo
;
}
public
OrderPage
V
O
setPageNo
(
Integer
pageNo
)
{
public
OrderPage
P
O
setPageNo
(
Integer
pageNo
)
{
this
.
pageNo
=
pageNo
;
return
this
;
}
...
...
@@ -54,7 +54,7 @@ public class OrderPageVO implements Serializable {
return
total
;
}
public
OrderPage
V
O
setTotal
(
Integer
total
)
{
public
OrderPage
P
O
setTotal
(
Integer
total
)
{
this
.
total
=
total
;
return
this
;
}
...
...
@@ -63,7 +63,7 @@ public class OrderPageVO implements Serializable {
return
orders
;
}
public
OrderPage
V
O
setOrders
(
List
<
OrderBO
>
orders
)
{
public
OrderPage
P
O
setOrders
(
List
<
OrderBO
>
orders
)
{
this
.
orders
=
orders
;
return
this
;
}
...
...
order/order-application/src/main/java/cn/iocoder/mall/order/application/
vo/OrderPageQueryV
O.java
→
order/order-application/src/main/java/cn/iocoder/mall/order/application/
po/OrderPageQueryP
O.java
浏览文件 @
8b111763
package
cn
.
iocoder
.
mall
.
order
.
application
.
v
o
;
package
cn
.
iocoder
.
mall
.
order
.
application
.
p
o
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
...
...
@@ -14,7 +14,7 @@ import java.util.Date;
* @time 2019-03-24 10:40
*/
@ApiModel
(
"订单查询"
)
public
class
OrderPageQuery
V
O
implements
Serializable
{
public
class
OrderPageQuery
P
O
implements
Serializable
{
/**
* id
...
...
@@ -91,7 +91,7 @@ public class OrderPageQueryVO implements Serializable {
return
id
;
}
public
OrderPageQuery
V
O
setId
(
Integer
id
)
{
public
OrderPageQuery
P
O
setId
(
Integer
id
)
{
this
.
id
=
id
;
return
this
;
}
...
...
@@ -100,7 +100,7 @@ public class OrderPageQueryVO implements Serializable {
return
orderNo
;
}
public
OrderPageQuery
V
O
setOrderNo
(
String
orderNo
)
{
public
OrderPageQuery
P
O
setOrderNo
(
String
orderNo
)
{
this
.
orderNo
=
orderNo
;
return
this
;
}
...
...
@@ -109,7 +109,7 @@ public class OrderPageQueryVO implements Serializable {
return
userId
;
}
public
OrderPageQuery
V
O
setUserId
(
Integer
userId
)
{
public
OrderPageQuery
P
O
setUserId
(
Integer
userId
)
{
this
.
userId
=
userId
;
return
this
;
}
...
...
@@ -118,7 +118,7 @@ public class OrderPageQueryVO implements Serializable {
return
startPaymentTime
;
}
public
OrderPageQuery
V
O
setStartPaymentTime
(
Date
startPaymentTime
)
{
public
OrderPageQuery
P
O
setStartPaymentTime
(
Date
startPaymentTime
)
{
this
.
startPaymentTime
=
startPaymentTime
;
return
this
;
}
...
...
@@ -127,7 +127,7 @@ public class OrderPageQueryVO implements Serializable {
return
endPaymentTime
;
}
public
OrderPageQuery
V
O
setEndPaymentTime
(
Date
endPaymentTime
)
{
public
OrderPageQuery
P
O
setEndPaymentTime
(
Date
endPaymentTime
)
{
this
.
endPaymentTime
=
endPaymentTime
;
return
this
;
}
...
...
@@ -136,7 +136,7 @@ public class OrderPageQueryVO implements Serializable {
return
startCreateTime
;
}
public
OrderPageQuery
V
O
setStartCreateTime
(
Date
startCreateTime
)
{
public
OrderPageQuery
P
O
setStartCreateTime
(
Date
startCreateTime
)
{
this
.
startCreateTime
=
startCreateTime
;
return
this
;
}
...
...
@@ -145,7 +145,7 @@ public class OrderPageQueryVO implements Serializable {
return
endCreateTime
;
}
public
OrderPageQuery
V
O
setEndCreateTime
(
Date
endCreateTime
)
{
public
OrderPageQuery
P
O
setEndCreateTime
(
Date
endCreateTime
)
{
this
.
endCreateTime
=
endCreateTime
;
return
this
;
}
...
...
@@ -154,7 +154,7 @@ public class OrderPageQueryVO implements Serializable {
return
startClosingTime
;
}
public
OrderPageQuery
V
O
setStartClosingTime
(
Date
startClosingTime
)
{
public
OrderPageQuery
P
O
setStartClosingTime
(
Date
startClosingTime
)
{
this
.
startClosingTime
=
startClosingTime
;
return
this
;
}
...
...
@@ -163,7 +163,7 @@ public class OrderPageQueryVO implements Serializable {
return
endClosingTime
;
}
public
OrderPageQuery
V
O
setEndClosingTime
(
Date
endClosingTime
)
{
public
OrderPageQuery
P
O
setEndClosingTime
(
Date
endClosingTime
)
{
this
.
endClosingTime
=
endClosingTime
;
return
this
;
}
...
...
@@ -172,7 +172,7 @@ public class OrderPageQueryVO implements Serializable {
return
status
;
}
public
OrderPageQuery
V
O
setStatus
(
Integer
status
)
{
public
OrderPageQuery
P
O
setStatus
(
Integer
status
)
{
this
.
status
=
status
;
return
this
;
}
...
...
@@ -181,7 +181,7 @@ public class OrderPageQueryVO implements Serializable {
return
deleted
;
}
public
OrderPageQuery
V
O
setDeleted
(
Integer
deleted
)
{
public
OrderPageQuery
P
O
setDeleted
(
Integer
deleted
)
{
this
.
deleted
=
deleted
;
return
this
;
}
...
...
@@ -190,7 +190,7 @@ public class OrderPageQueryVO implements Serializable {
return
pageNo
;
}
public
OrderPageQuery
V
O
setPageNo
(
Integer
pageNo
)
{
public
OrderPageQuery
P
O
setPageNo
(
Integer
pageNo
)
{
this
.
pageNo
=
pageNo
;
return
this
;
}
...
...
@@ -199,7 +199,7 @@ public class OrderPageQueryVO implements Serializable {
return
pageSize
;
}
public
OrderPageQuery
V
O
setPageSize
(
Integer
pageSize
)
{
public
OrderPageQuery
P
O
setPageSize
(
Integer
pageSize
)
{
this
.
pageSize
=
pageSize
;
return
this
;
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论