分类 退菜退库存模式

This commit is contained in:
2026-04-21 16:47:40 +08:00
parent 42c98b0949
commit f237fd69ae
6 changed files with 53 additions and 21 deletions

View File

@@ -84,4 +84,8 @@ public class ShopProdCategoryDTO implements Serializable {
* 退菜是否退库存 1退菜退库存 2仅退菜不退库存 3每次询问-退菜后弹窗提示
*/
private Integer refundMode;
/**
* 退菜是否退回库存
*/
private Integer isRefundStock;
}

View File

@@ -68,6 +68,10 @@ public class ShopProdCategory implements Serializable {
* 状态 0-禁用 1-启用
*/
private Integer status;
/**
* 退菜是否退回库存
*/
private Integer isRefundStock;
/**
* 退菜是否退库存 1退菜退库存 2仅退菜不退库存 3每次询问-退菜后弹窗提示
*/

View File

@@ -83,4 +83,8 @@ public interface ShopProdCategoryService extends IService<ShopProdCategory> {
*/
void enableShopProdCategory(Long id);
/**
* 编辑店铺商品分类的退款库存开关
*/
void upRefundStock(Long id,Integer isRefundStock);
}