tb_product 新增 refund_mode
This commit is contained in:
@@ -160,6 +160,10 @@ public class ProductDTO implements Serializable {
|
||||
* 是否自动售罄
|
||||
*/
|
||||
private Integer isAutoSoldStock;
|
||||
/**
|
||||
* 退菜是否退库存 1退菜退库存 2仅退菜不退库存 3每次询问-退菜后弹窗提示
|
||||
*/
|
||||
private Integer refundMode;
|
||||
/**
|
||||
* 团购卷分类,可有多个分类
|
||||
*/
|
||||
|
||||
@@ -118,6 +118,10 @@ public class Product implements Serializable {
|
||||
* 是否自动售罄
|
||||
*/
|
||||
private Integer isAutoSoldStock;
|
||||
/**
|
||||
* 退菜是否退库存 1退菜退库存 2仅退菜不退库存 3每次询问-退菜后弹窗提示
|
||||
*/
|
||||
private Integer refundMode;
|
||||
/**
|
||||
* 是否售罄
|
||||
*/
|
||||
|
||||
@@ -74,6 +74,10 @@ public class ShopProductSkuInfoVo implements Serializable {
|
||||
* 是否开启库存
|
||||
*/
|
||||
private Integer isAutoSoldStock;
|
||||
/**
|
||||
* 退菜是否退库存 1退菜退库存 2仅退菜不退库存 3每次询问-退菜后弹窗提示
|
||||
*/
|
||||
private Integer refundMode;
|
||||
/**
|
||||
* 是否上架(同isGrounding)
|
||||
*/
|
||||
|
||||
@@ -565,6 +565,7 @@ public class ShopSyncServiceImpl implements ShopSyncService {
|
||||
tbProductNew.setGroupType(tbProduct.getGroupType());
|
||||
tbProductNew.setPackFee(tbProduct.getPackFee());
|
||||
tbProductNew.setIsAutoSoldStock(tbProduct.getIsAutoSoldStock());
|
||||
tbProductNew.setRefundMode(tbProduct.getRefundMode());
|
||||
tbProductNew.setCoverImg(tbProduct.getCoverImg());
|
||||
tbProductNew.setImages(tbProduct.getImages());
|
||||
tbProductNew.setWeight(tbProduct.getWeight());
|
||||
|
||||
Reference in New Issue
Block a user