package com.smartor.service; import com.smartor.domain.SchemeCategory; import java.util.List; /** * 智能中心接口 * * @author ls * @date 2023-05-23 */ public interface IntelligenceCenterService { /** * 删除方案分类信息 * * @param id 方案分类主键 * @return 结果 */ public int deleteSchemeCategoryById(Long id); }