- 优化 命名错误,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.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
@ -14,7 +14,7 @@ import java.io.Serializable;
* @time 2019-03-24 11:16 * @time 2019-03-24 11:16
*/ */
@ApiModel("订单item更新") @ApiModel("订单item更新")
public class OrderItemUpdateVO implements Serializable { public class OrderItemUpdatePO implements Serializable {
/** /**
* 编号 * 编号
@ -57,7 +57,7 @@ public class OrderItemUpdateVO implements Serializable {
return id; return id;
} }
public OrderItemUpdateVO setId(Integer id) { public OrderItemUpdatePO setId(Integer id) {
this.id = id; this.id = id;
return this; return this;
} }
@ -66,7 +66,7 @@ public class OrderItemUpdateVO implements Serializable {
return skuId; return skuId;
} }
public OrderItemUpdateVO setSkuId(Integer skuId) { public OrderItemUpdatePO setSkuId(Integer skuId) {
this.skuId = skuId; this.skuId = skuId;
return this; return this;
} }
@ -75,7 +75,7 @@ public class OrderItemUpdateVO implements Serializable {
return quantity; return quantity;
} }
public OrderItemUpdateVO setQuantity(Integer quantity) { public OrderItemUpdatePO setQuantity(Integer quantity) {
this.quantity = quantity; this.quantity = quantity;
return this; return this;
} }
@ -84,7 +84,7 @@ public class OrderItemUpdateVO implements Serializable {
return price; return price;
} }
public OrderItemUpdateVO setPrice(Integer price) { public OrderItemUpdatePO setPrice(Integer price) {
this.price = price; this.price = price;
return this; 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.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
@ -14,7 +14,7 @@ import java.io.Serializable;
* @time 2019-03-24 11:01 * @time 2019-03-24 11:01
*/ */
@ApiModel("订单物流信息") @ApiModel("订单物流信息")
public class OrderLogisticsVO implements Serializable { public class OrderLogisticsPO implements Serializable {
/** /**
* 订单 id * 订单 id
@ -70,7 +70,7 @@ public class OrderLogisticsVO implements Serializable {
return id; return id;
} }
public OrderLogisticsVO setId(Integer id) { public OrderLogisticsPO setId(Integer id) {
this.id = id; this.id = id;
return this; return this;
} }
@ -79,7 +79,7 @@ public class OrderLogisticsVO implements Serializable {
return areaNo; return areaNo;
} }
public OrderLogisticsVO setAreaNo(String areaNo) { public OrderLogisticsPO setAreaNo(String areaNo) {
this.areaNo = areaNo; this.areaNo = areaNo;
return this; return this;
} }
@ -88,7 +88,7 @@ public class OrderLogisticsVO implements Serializable {
return name; return name;
} }
public OrderLogisticsVO setName(String name) { public OrderLogisticsPO setName(String name) {
this.name = name; this.name = name;
return this; return this;
} }
@ -97,7 +97,7 @@ public class OrderLogisticsVO implements Serializable {
return mobile; return mobile;
} }
public OrderLogisticsVO setMobile(String mobile) { public OrderLogisticsPO setMobile(String mobile) {
this.mobile = mobile; this.mobile = mobile;
return this; return this;
} }
@ -106,7 +106,7 @@ public class OrderLogisticsVO implements Serializable {
return address; return address;
} }
public OrderLogisticsVO setAddress(String address) { public OrderLogisticsPO setAddress(String address) {
this.address = address; this.address = address;
return this; return this;
} }
@ -115,7 +115,7 @@ public class OrderLogisticsVO implements Serializable {
return logisticsNo; return logisticsNo;
} }
public OrderLogisticsVO setLogisticsNo(String logisticsNo) { public OrderLogisticsPO setLogisticsNo(String logisticsNo) {
this.logisticsNo = logisticsNo; this.logisticsNo = logisticsNo;
return this; 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 cn.iocoder.mall.order.api.bo.OrderBO;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
@ -14,7 +14,7 @@ import java.util.List;
* @time 2019-03-27 21:23 * @time 2019-03-27 21:23
*/ */
@ApiModel("订单VO") @ApiModel("订单VO")
public class OrderPageVO implements Serializable { public class OrderPagePO implements Serializable {
/** /**
* 分页 * 分页
@ -45,7 +45,7 @@ public class OrderPageVO implements Serializable {
return pageNo; return pageNo;
} }
public OrderPageVO setPageNo(Integer pageNo) { public OrderPagePO setPageNo(Integer pageNo) {
this.pageNo = pageNo; this.pageNo = pageNo;
return this; return this;
} }
@ -54,7 +54,7 @@ public class OrderPageVO implements Serializable {
return total; return total;
} }
public OrderPageVO setTotal(Integer total) { public OrderPagePO setTotal(Integer total) {
this.total = total; this.total = total;
return this; return this;
} }
@ -63,7 +63,7 @@ public class OrderPageVO implements Serializable {
return orders; return orders;
} }
public OrderPageVO setOrders(List<OrderBO> orders) { public OrderPagePO setOrders(List<OrderBO> orders) {
this.orders = orders; this.orders = orders;
return this; 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.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
@ -14,7 +14,7 @@ import java.util.Date;
* @time 2019-03-24 10:40 * @time 2019-03-24 10:40
*/ */
@ApiModel("订单查询") @ApiModel("订单查询")
public class OrderPageQueryVO implements Serializable { public class OrderPageQueryPO implements Serializable {
/** /**
* id * id
@ -91,7 +91,7 @@ public class OrderPageQueryVO implements Serializable {
return id; return id;
} }
public OrderPageQueryVO setId(Integer id) { public OrderPageQueryPO setId(Integer id) {
this.id = id; this.id = id;
return this; return this;
} }
@ -100,7 +100,7 @@ public class OrderPageQueryVO implements Serializable {
return orderNo; return orderNo;
} }
public OrderPageQueryVO setOrderNo(String orderNo) { public OrderPageQueryPO setOrderNo(String orderNo) {
this.orderNo = orderNo; this.orderNo = orderNo;
return this; return this;
} }
@ -109,7 +109,7 @@ public class OrderPageQueryVO implements Serializable {
return userId; return userId;
} }
public OrderPageQueryVO setUserId(Integer userId) { public OrderPageQueryPO setUserId(Integer userId) {
this.userId = userId; this.userId = userId;
return this; return this;
} }
@ -118,7 +118,7 @@ public class OrderPageQueryVO implements Serializable {
return startPaymentTime; return startPaymentTime;
} }
public OrderPageQueryVO setStartPaymentTime(Date startPaymentTime) { public OrderPageQueryPO setStartPaymentTime(Date startPaymentTime) {
this.startPaymentTime = startPaymentTime; this.startPaymentTime = startPaymentTime;
return this; return this;
} }
@ -127,7 +127,7 @@ public class OrderPageQueryVO implements Serializable {
return endPaymentTime; return endPaymentTime;
} }
public OrderPageQueryVO setEndPaymentTime(Date endPaymentTime) { public OrderPageQueryPO setEndPaymentTime(Date endPaymentTime) {
this.endPaymentTime = endPaymentTime; this.endPaymentTime = endPaymentTime;
return this; return this;
} }
@ -136,7 +136,7 @@ public class OrderPageQueryVO implements Serializable {
return startCreateTime; return startCreateTime;
} }
public OrderPageQueryVO setStartCreateTime(Date startCreateTime) { public OrderPageQueryPO setStartCreateTime(Date startCreateTime) {
this.startCreateTime = startCreateTime; this.startCreateTime = startCreateTime;
return this; return this;
} }
@ -145,7 +145,7 @@ public class OrderPageQueryVO implements Serializable {
return endCreateTime; return endCreateTime;
} }
public OrderPageQueryVO setEndCreateTime(Date endCreateTime) { public OrderPageQueryPO setEndCreateTime(Date endCreateTime) {
this.endCreateTime = endCreateTime; this.endCreateTime = endCreateTime;
return this; return this;
} }
@ -154,7 +154,7 @@ public class OrderPageQueryVO implements Serializable {
return startClosingTime; return startClosingTime;
} }
public OrderPageQueryVO setStartClosingTime(Date startClosingTime) { public OrderPageQueryPO setStartClosingTime(Date startClosingTime) {
this.startClosingTime = startClosingTime; this.startClosingTime = startClosingTime;
return this; return this;
} }
@ -163,7 +163,7 @@ public class OrderPageQueryVO implements Serializable {
return endClosingTime; return endClosingTime;
} }
public OrderPageQueryVO setEndClosingTime(Date endClosingTime) { public OrderPageQueryPO setEndClosingTime(Date endClosingTime) {
this.endClosingTime = endClosingTime; this.endClosingTime = endClosingTime;
return this; return this;
} }
@ -172,7 +172,7 @@ public class OrderPageQueryVO implements Serializable {
return status; return status;
} }
public OrderPageQueryVO setStatus(Integer status) { public OrderPageQueryPO setStatus(Integer status) {
this.status = status; this.status = status;
return this; return this;
} }
@ -181,7 +181,7 @@ public class OrderPageQueryVO implements Serializable {
return deleted; return deleted;
} }
public OrderPageQueryVO setDeleted(Integer deleted) { public OrderPageQueryPO setDeleted(Integer deleted) {
this.deleted = deleted; this.deleted = deleted;
return this; return this;
} }
@ -190,7 +190,7 @@ public class OrderPageQueryVO implements Serializable {
return pageNo; return pageNo;
} }
public OrderPageQueryVO setPageNo(Integer pageNo) { public OrderPageQueryPO setPageNo(Integer pageNo) {
this.pageNo = pageNo; this.pageNo = pageNo;
return this; return this;
} }
@ -199,7 +199,7 @@ public class OrderPageQueryVO implements Serializable {
return pageSize; return pageSize;
} }
public OrderPageQueryVO setPageSize(Integer pageSize) { public OrderPageQueryPO setPageSize(Integer pageSize) {
this.pageSize = pageSize; this.pageSize = pageSize;
return this; return this;
} }