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