Authored by mali

Merge branch 'dev_product'

@@ -20,7 +20,7 @@ public class StoragePrice { @@ -20,7 +20,7 @@ public class StoragePrice {
20 20
21 private BigDecimal price; 21 private BigDecimal price;
22 22
23 - /** 1:可售,2卖出,3鉴定失败,4卖家取消. */ 23 + /** 1:可售,2卖出,3鉴定失败,4卖家取消, 5客服取消. */
24 private Integer status; 24 private Integer status;
25 25
26 private Integer updateTime; 26 private Integer updateTime;
@@ -307,6 +307,7 @@ public class ProductServiceImpl implements ProductService{ @@ -307,6 +307,7 @@ public class ProductServiceImpl implements ProductService{
307 sp.setDepotNum(depotNum); 307 sp.setDepotNum(depotNum);
308 sp.setSkup(skup); 308 sp.setSkup(skup);
309 sp.setCreateTime((int) (System.currentTimeMillis() / 1000)); 309 sp.setCreateTime((int) (System.currentTimeMillis() / 1000));
  310 + sp.setUpdateTime(0);
310 sp.setStatus(1); 311 sp.setStatus(1);
311 return sp; 312 return sp;
312 } 313 }