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); 
 |  } 
 |  
  |