Commit 50520987 authored by shiyu's avatar shiyu

拍品列表新增状态字段

parent d4427ecd
...@@ -132,6 +132,8 @@ public class SysSpecialPerformanceServiceImpl implements SysSpecialPerformanceSe ...@@ -132,6 +132,8 @@ public class SysSpecialPerformanceServiceImpl implements SysSpecialPerformanceSe
if (auctionConfig != null && auctionConfig.getIsValid()) { if (auctionConfig != null && auctionConfig.getIsValid()) {
supplierItemVo.setStartPrice(PriceUtil.convertPriceFenToYuan(auctionConfig.getStartPrice())); supplierItemVo.setStartPrice(PriceUtil.convertPriceFenToYuan(auctionConfig.getStartPrice()));
supplierItemVo.setAddExtent(PriceUtil.convertPriceFenToYuan(auctionConfig.getAddExtent())); supplierItemVo.setAddExtent(PriceUtil.convertPriceFenToYuan(auctionConfig.getAddExtent()));
supplierItemVo.setAuctionState(auctionConfig.getState());
supplierItemVo.setAuctionStateName(AuctionEnum.StateEnum.getNameByCode(auctionConfig.getState()));
} }
supplierItemVos.add(supplierItemVo); supplierItemVos.add(supplierItemVo);
} }
......
...@@ -272,6 +272,10 @@ public class SupplierItemVo implements Entity { ...@@ -272,6 +272,10 @@ public class SupplierItemVo implements Entity {
private String statusName; private String statusName;
private Integer auctionState;
private String auctionStateName;
/** /**
* 是否已经有折扣订单 * 是否已经有折扣订单
*/ */
......
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