package cn.iocoder.yudao.module.srm.service.supplier; import cn.iocoder.yudao.module.srm.dal.dataobject.SrmSupplierCategoryDO; import jakarta.validation.Valid; import java.util.List; /** * SRM 供应商分类关联 Service 接口 */ public interface SrmSupplierCategoryService { void assignCategory(@Valid Long supplierId, Long categoryId, String categoryName); void removeCategory(Long id); List getCategoryListBySupplierId(Long supplierId); }