liuxiaolong
2019-05-06 f99bc8c6a1d10610373738edd7d0aa0181c81d99
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
package com.cloud.user.dao;
 
 
import com.cloud.model.sys.SysDict;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
import java.util.Map;
 
@Mapper
public interface SysDictDao {
 
    int deleteByPrimaryKey(Integer id);
 
    int insert(SysDict record);
 
    int insertSelective(SysDict record);
 
    SysDict selectByPrimaryKey(Integer id);
 
    int updateByPrimaryKeySelective(SysDict record);
 
    int updateByPrimaryKey(SysDict record);
 
    //查询系统字典集合
    List<SysDict> getSysDicts(Map<String, Object> params);
 
    //系统字典删除
    Integer deleteSysDicts(Integer id);
 
    //查询系统字典集合数量
    Integer getSysDictsCount(Map<String, Object> params);
 
    ////* 系统字典展示查询
    List<Map<String,Object>> getSysDictByType(Map<String, Object> params);
}