Authored by Lixiaodi

增加状态

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