- 优化 命名错误,VO 改为 PO

This commit is contained in:
sin 2019-04-05 16:58:29 +08:00
parent 8680064f8e
commit 8b11176353
4 changed files with 34 additions and 34 deletions

View File

@ -1,4 +1,4 @@
package cn.iocoder.mall.order.application.vo;
package cn.iocoder.mall.order.application.po;
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 OrderItemUpdateVO implements Serializable {
public class OrderItemUpdatePO implements Serializable {
/**
* 编号
@ -57,7 +57,7 @@ public class OrderItemUpdateVO implements Serializable {
return id;
}
public OrderItemUpdateVO setId(Integer id) {
public OrderItemUpdatePO setId(Integer id) {
this.id = id;
return this;
}
@ -66,7 +66,7 @@ public class OrderItemUpdateVO implements Serializable {
return skuId;
}
public OrderItemUpdateVO setSkuId(Integer skuId) {
public OrderItemUpdatePO setSkuId(Integer skuId) {
this.skuId = skuId;
return this;
}
@ -75,7 +75,7 @@ public class OrderItemUpdateVO implements Serializable {
return quantity;
}
public OrderItemUpdateVO setQuantity(Integer quantity) {
public OrderItemUpdatePO setQuantity(Integer quantity) {
this.quantity = quantity;
return this;
}
@ -84,7 +84,7 @@ public class OrderItemUpdateVO implements Serializable {
return price;
}
public OrderItemUpdateVO setPrice(Integer price) {
public OrderItemUpdatePO setPrice(Integer price) {
this.price = price;
return this;
}

View File

@ -1,4 +1,4 @@
package cn.iocoder.mall.order.application.vo;
package cn.iocoder.mall.order.application.po;
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 OrderLogisticsVO implements Serializable {
public class OrderLogisticsPO implements Serializable {
/**
* 订单 id
@ -70,7 +70,7 @@ public class OrderLogisticsVO implements Serializable {
return id;
}
public OrderLogisticsVO setId(Integer id) {
public OrderLogisticsPO setId(Integer id) {
this.id = id;
return this;
}
@ -79,7 +79,7 @@ public class OrderLogisticsVO implements Serializable {
return areaNo;
}
public OrderLogisticsVO setAreaNo(String areaNo) {
public OrderLogisticsPO setAreaNo(String areaNo) {
this.areaNo = areaNo;
return this;
}
@ -88,7 +88,7 @@ public class OrderLogisticsVO implements Serializable {
return name;
}
public OrderLogisticsVO setName(String name) {
public OrderLogisticsPO setName(String name) {
this.name = name;
return this;
}
@ -97,7 +97,7 @@ public class OrderLogisticsVO implements Serializable {
return mobile;
}
public OrderLogisticsVO setMobile(String mobile) {
public OrderLogisticsPO setMobile(String mobile) {
this.mobile = mobile;
return this;
}
@ -106,7 +106,7 @@ public class OrderLogisticsVO implements Serializable {
return address;
}
public OrderLogisticsVO setAddress(String address) {
public OrderLogisticsPO setAddress(String address) {
this.address = address;
return this;
}
@ -115,7 +115,7 @@ public class OrderLogisticsVO implements Serializable {
return logisticsNo;
}
public OrderLogisticsVO setLogisticsNo(String logisticsNo) {
public OrderLogisticsPO setLogisticsNo(String logisticsNo) {
this.logisticsNo = logisticsNo;
return this;
}

View File

@ -1,4 +1,4 @@
package cn.iocoder.mall.order.application.vo;
package cn.iocoder.mall.order.application.po;
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 OrderPageVO implements Serializable {
public class OrderPagePO implements Serializable {
/**
* 分页
@ -45,7 +45,7 @@ public class OrderPageVO implements Serializable {
return pageNo;
}
public OrderPageVO setPageNo(Integer pageNo) {
public OrderPagePO setPageNo(Integer pageNo) {
this.pageNo = pageNo;
return this;
}
@ -54,7 +54,7 @@ public class OrderPageVO implements Serializable {
return total;
}
public OrderPageVO setTotal(Integer total) {
public OrderPagePO setTotal(Integer total) {
this.total = total;
return this;
}
@ -63,7 +63,7 @@ public class OrderPageVO implements Serializable {
return orders;
}
public OrderPageVO setOrders(List<OrderBO> orders) {
public OrderPagePO setOrders(List<OrderBO> orders) {
this.orders = orders;
return this;
}

View File

@ -1,4 +1,4 @@
package cn.iocoder.mall.order.application.vo;
package cn.iocoder.mall.order.application.po;
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 OrderPageQueryVO implements Serializable {
public class OrderPageQueryPO implements Serializable {
/**
* id
@ -91,7 +91,7 @@ public class OrderPageQueryVO implements Serializable {
return id;
}
public OrderPageQueryVO setId(Integer id) {
public OrderPageQueryPO setId(Integer id) {
this.id = id;
return this;
}
@ -100,7 +100,7 @@ public class OrderPageQueryVO implements Serializable {
return orderNo;
}
public OrderPageQueryVO setOrderNo(String orderNo) {
public OrderPageQueryPO setOrderNo(String orderNo) {
this.orderNo = orderNo;
return this;
}
@ -109,7 +109,7 @@ public class OrderPageQueryVO implements Serializable {
return userId;
}
public OrderPageQueryVO setUserId(Integer userId) {
public OrderPageQueryPO setUserId(Integer userId) {
this.userId = userId;
return this;
}
@ -118,7 +118,7 @@ public class OrderPageQueryVO implements Serializable {
return startPaymentTime;
}
public OrderPageQueryVO setStartPaymentTime(Date startPaymentTime) {
public OrderPageQueryPO setStartPaymentTime(Date startPaymentTime) {
this.startPaymentTime = startPaymentTime;
return this;
}
@ -127,7 +127,7 @@ public class OrderPageQueryVO implements Serializable {
return endPaymentTime;
}
public OrderPageQueryVO setEndPaymentTime(Date endPaymentTime) {
public OrderPageQueryPO setEndPaymentTime(Date endPaymentTime) {
this.endPaymentTime = endPaymentTime;
return this;
}
@ -136,7 +136,7 @@ public class OrderPageQueryVO implements Serializable {
return startCreateTime;
}
public OrderPageQueryVO setStartCreateTime(Date startCreateTime) {
public OrderPageQueryPO setStartCreateTime(Date startCreateTime) {
this.startCreateTime = startCreateTime;
return this;
}
@ -145,7 +145,7 @@ public class OrderPageQueryVO implements Serializable {
return endCreateTime;
}
public OrderPageQueryVO setEndCreateTime(Date endCreateTime) {
public OrderPageQueryPO setEndCreateTime(Date endCreateTime) {
this.endCreateTime = endCreateTime;
return this;
}
@ -154,7 +154,7 @@ public class OrderPageQueryVO implements Serializable {
return startClosingTime;
}
public OrderPageQueryVO setStartClosingTime(Date startClosingTime) {
public OrderPageQueryPO setStartClosingTime(Date startClosingTime) {
this.startClosingTime = startClosingTime;
return this;
}
@ -163,7 +163,7 @@ public class OrderPageQueryVO implements Serializable {
return endClosingTime;
}
public OrderPageQueryVO setEndClosingTime(Date endClosingTime) {
public OrderPageQueryPO setEndClosingTime(Date endClosingTime) {
this.endClosingTime = endClosingTime;
return this;
}
@ -172,7 +172,7 @@ public class OrderPageQueryVO implements Serializable {
return status;
}
public OrderPageQueryVO setStatus(Integer status) {
public OrderPageQueryPO setStatus(Integer status) {
this.status = status;
return this;
}
@ -181,7 +181,7 @@ public class OrderPageQueryVO implements Serializable {
return deleted;
}
public OrderPageQueryVO setDeleted(Integer deleted) {
public OrderPageQueryPO setDeleted(Integer deleted) {
this.deleted = deleted;
return this;
}
@ -190,7 +190,7 @@ public class OrderPageQueryVO implements Serializable {
return pageNo;
}
public OrderPageQueryVO setPageNo(Integer pageNo) {
public OrderPageQueryPO setPageNo(Integer pageNo) {
this.pageNo = pageNo;
return this;
}
@ -199,7 +199,7 @@ public class OrderPageQueryVO implements Serializable {
return pageSize;
}
public OrderPageQueryVO setPageSize(Integer pageSize) {
public OrderPageQueryPO setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}