Authored by Lixiaodi

增加状态

... ... @@ -26,4 +26,5 @@ public class SecondHandProductResp {
/** 全新瑕疵,二手. */
private String sechondHandTypeName;
private String soldTime;
private int status;
}
... ...
... ... @@ -1228,6 +1228,7 @@ public class ProductServiceImpl implements ProductService {
bean.setSkup(sp.getSkup());
bean.setPrice(sp.getPrice().toString());
bean.setSechondHandTypeName(sp.getPreSaleFlag() == 5 ? "全新瑕疵" : "二手");
bean.setStatus(sp.getStatus());
Storage storage = storageMap.get(sp.getStorageId());
if (storage != null) {
Size size = sizeMap.get(storage.getSizeId());
... ...