liusheng
2025-02-22 ff6e84a8f969e2196041c500af051e3e33c46009
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
}