记得上下班打卡 | git大法好,push需谨慎

Commit 44db13ad authored by 胡佳晨's avatar 胡佳晨

订单列表增加活动类型

parent 4b93ed8c
...@@ -56,6 +56,8 @@ public class GoblinStoreOrderListVo implements Cloneable { ...@@ -56,6 +56,8 @@ public class GoblinStoreOrderListVo implements Cloneable {
private String logisticsCompany; private String logisticsCompany;
@ApiModelProperty(value = " 活动名称") @ApiModelProperty(value = " 活动名称")
private String marketName; private String marketName;
@ApiModelProperty(value = " 活动类型")
private String marketType;
@ApiModelProperty(value = " 物流相关") @ApiModelProperty(value = " 物流相关")
private List<GoblinMailVo> goblinMailVoList; private List<GoblinMailVo> goblinMailVoList;
//todo hujiachen 缺发货时间 //todo hujiachen 缺发货时间
......
...@@ -80,6 +80,7 @@ public class GoblinStoreOrderServiceImpl implements IGoblinStoreOrderService { ...@@ -80,6 +80,7 @@ public class GoblinStoreOrderServiceImpl implements IGoblinStoreOrderService {
vo.setPayType(item.getPayType()); vo.setPayType(item.getPayType());
vo.setPriceActual(item.getPriceActual()); vo.setPriceActual(item.getPriceActual());
vo.setStatus(item.getStatus()); vo.setStatus(item.getStatus());
vo.setMarketType(item.getMarketType());
vo.setPriceExpress(item.getPriceExpress()); vo.setPriceExpress(item.getPriceExpress());
List<GoblinStoreOrderListSkuVo> orderListSkuVos = ObjectUtil.getGoblinStoreOrderListSkuVoArrayList(); List<GoblinStoreOrderListSkuVo> orderListSkuVos = ObjectUtil.getGoblinStoreOrderListSkuVoArrayList();
for (String skuId : item.getOrderSkuVoIds()) { for (String skuId : item.getOrderSkuVoIds()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment