tb_product 新增 refund_mode

This commit is contained in:
2026-04-09 17:30:54 +08:00
parent 86fdcaf8a0
commit 799167a26b
4 changed files with 13 additions and 0 deletions

View File

@@ -160,6 +160,10 @@ public class ProductDTO implements Serializable {
* 是否自动售罄 * 是否自动售罄
*/ */
private Integer isAutoSoldStock; private Integer isAutoSoldStock;
/**
* 退菜是否退库存 1退菜退库存 2仅退菜不退库存 3每次询问-退菜后弹窗提示
*/
private Integer refundMode;
/** /**
* 团购卷分类,可有多个分类 * 团购卷分类,可有多个分类
*/ */

View File

@@ -118,6 +118,10 @@ public class Product implements Serializable {
* 是否自动售罄 * 是否自动售罄
*/ */
private Integer isAutoSoldStock; private Integer isAutoSoldStock;
/**
* 退菜是否退库存 1退菜退库存 2仅退菜不退库存 3每次询问-退菜后弹窗提示
*/
private Integer refundMode;
/** /**
* 是否售罄 * 是否售罄
*/ */

View File

@@ -74,6 +74,10 @@ public class ShopProductSkuInfoVo implements Serializable {
* 是否开启库存 * 是否开启库存
*/ */
private Integer isAutoSoldStock; private Integer isAutoSoldStock;
/**
* 退菜是否退库存 1退菜退库存 2仅退菜不退库存 3每次询问-退菜后弹窗提示
*/
private Integer refundMode;
/** /**
* 是否上架(同isGrounding) * 是否上架(同isGrounding)
*/ */

View File

@@ -565,6 +565,7 @@ public class ShopSyncServiceImpl implements ShopSyncService {
tbProductNew.setGroupType(tbProduct.getGroupType()); tbProductNew.setGroupType(tbProduct.getGroupType());
tbProductNew.setPackFee(tbProduct.getPackFee()); tbProductNew.setPackFee(tbProduct.getPackFee());
tbProductNew.setIsAutoSoldStock(tbProduct.getIsAutoSoldStock()); tbProductNew.setIsAutoSoldStock(tbProduct.getIsAutoSoldStock());
tbProductNew.setRefundMode(tbProduct.getRefundMode());
tbProductNew.setCoverImg(tbProduct.getCoverImg()); tbProductNew.setCoverImg(tbProduct.getCoverImg());
tbProductNew.setImages(tbProduct.getImages()); tbProductNew.setImages(tbProduct.getImages());
tbProductNew.setWeight(tbProduct.getWeight()); tbProductNew.setWeight(tbProduct.getWeight());