Merge remote-tracking branch 'origin/master'

This commit is contained in:
张松
2025-03-10 10:39:28 +08:00
3 changed files with 54 additions and 23 deletions

View File

@@ -50,7 +50,7 @@ public interface ProdGroupService extends IService<ProdGroup> {
*
* @param id 商品分组ID
*/
void deleteProdGroup(Long id);
void deleteProdGroup(Long shopId, Long id);
/**
* 更新商品分组
@@ -64,13 +64,13 @@ public interface ProdGroupService extends IService<ProdGroup> {
*
* @param id 商品分组ID
*/
void disableProdGroup(Long id);
void disableProdGroup(Long shopId, Long id);
/**
* 启用商品分组
*
* @param id 商品分组ID
*/
void enableProdGroup(Long id);
void enableProdGroup(Long shopId, Long id);
}