jyy
2021-09-11 a4694bf4e0384df517464624748b366f533fda0f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package com.matrix.system.common.service;
 
import com.matrix.core.pojo.PaginationVO;
import com.matrix.system.common.bean.SystemDictionary;
import com.matrix.system.hive.plugin.util.BaseServices;
 
import java.util.List;
 
 
 
/**
 *
 * @date 2016-07-03 20:53
 */
public interface SystemDictionaryService extends BaseServices<SystemDictionary> {
    
    /**
     * 新增SysDataDictionary
     * 
     */
    public int add(SystemDictionary sysDataDictionary);
       
       /**
     * 更新SysDataDictionary
     * 
     */
    public int modify(SystemDictionary sysDataDictionary);
    
    /**
     * 批量删除SysDataDictionary
     * 
     */
    public int remove(List<Long> list);
 
    /**
     * 根据id删除SysDataDictionary
     * 
     */
    public int removeById(Long id);
    
    /**
     * 分页查询SysDataDictionary
     * 
     */
    public List<SystemDictionary> findInPage(SystemDictionary sysDataDictionary, PaginationVO pageVo);
 
    /**
     * 根据对象查询SysDataDictionary
     * 
     */
    public List<SystemDictionary> findByModel(SystemDictionary sysDataDictionary);
    
    /**
     * 统计记录数SysDataDictionary
     * 
     */
    public int  findTotal(SystemDictionary sysDataDictionary);
    
    /**
     * 根据id查询SysDataDictionary
     * 
     */
    public SystemDictionary findById(Long id);
    /**
     * 
    *      查询字典里面的所有字典类型
    * @author:jyy
    * @param @return    AjaxResult
    * @throws
     */
    public List<String> getDictionaryType();
 
 
       
 
  
}