935090232@qq.com
2022-04-20 dc88fd134d48713f0e941ffb5af2d7ce2d475ed7
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
package com.matrix.system.common.dao;
 
import java.util.List;
 
 
import com.matrix.system.common.bean.SystemDictionary;
import org.apache.ibatis.annotations.Param;
 
import com.matrix.core.pojo.PaginationVO;
 
 
/**
 *
 * @date 2016-07-03 20:53
 */
 
 
public interface SystemDictionaryDao {
 
    public int insert(SystemDictionary sysDataDictionary);
       
    public int update(SystemDictionary sysDataDictionary);
    
    public int deleteByIds(@Param("list") List<Long> list);
    
    public int deleteById(Long id);
    
    public List<SystemDictionary> selectInPage(@Param("record") SystemDictionary sysDataDictionary, @Param("pageVo") PaginationVO pageVo);
 
    public List<SystemDictionary> selectByModel(@Param("record") SystemDictionary sysDataDictionary);
    
    public int  selectTotalRecord(@Param("record") SystemDictionary sysDataDictionary);
    
    public SystemDictionary selectById(Long id);
 
    public List<String> getDictionaryType();
 
    SystemDictionary selectByCode(String code);
}