You've already forked FrameTour-BE
添加景区、删除子类型
This commit is contained in:
@@ -56,4 +56,38 @@ public interface IPricingManagementService {
|
||||
* 更新一口价配置
|
||||
*/
|
||||
boolean updateBundleConfig(PriceBundleConfig config);
|
||||
|
||||
// ==================== 状态管理 ====================
|
||||
|
||||
/**
|
||||
* 更新商品配置状态
|
||||
*/
|
||||
boolean updateProductConfigStatus(Long id, Boolean isActive);
|
||||
|
||||
/**
|
||||
* 更新阶梯配置状态
|
||||
*/
|
||||
boolean updateTierConfigStatus(Long id, Boolean isActive);
|
||||
|
||||
/**
|
||||
* 更新一口价配置状态
|
||||
*/
|
||||
boolean updateBundleConfigStatus(Long id, Boolean isActive);
|
||||
|
||||
// ==================== 删除操作 ====================
|
||||
|
||||
/**
|
||||
* 删除商品配置
|
||||
*/
|
||||
boolean deleteProductConfig(Long id);
|
||||
|
||||
/**
|
||||
* 删除阶梯配置
|
||||
*/
|
||||
boolean deleteTierConfig(Long id);
|
||||
|
||||
/**
|
||||
* 删除一口价配置
|
||||
*/
|
||||
boolean deleteBundleConfig(Long id);
|
||||
}
|
Reference in New Issue
Block a user