Merge branch 'dev_product'
Showing
2 changed files
with
2 additions
and
1 deletions
@@ -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 | } |
-
Please register or login to post a comment