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
37
38
39
package com.cloud.user.dao;
 
import com.cloud.model.sys.GloDict;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
import java.util.Map;
 
@Mapper
public interface GolDictDao {
 
    int deleteByPrimaryKey(Integer id);
 
    int insert(GloDict record);
 
    int insertSelective(Map<String,Object> params);
 
    GloDict selectByPrimaryKey(Integer id);
 
    int updateByPrimaryKeySelective(Map<String,Object> params);
 
    int updateByPrimaryKey(GloDict record);
 
 
    List<Map<String,Object>> getTeacherPact(Map<String,Object> params);
 
    List<Map<String,Object>> getPeoType(Map<String,Object> params);
 
    List<Map<String,Object>> getOrgType(Map<String,Object> params);
 
    //查询全局字典集合
    List<Map<String,Object>> getGloDicts(Map<String, Object> params);
 
    //逻辑删除
    Integer deleteGloDicts(Integer id);
 
    //查询全局字典集合数
    Integer getGloDictsCount(Map<String, Object> params);
}