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 params); GloDict selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(Map params); int updateByPrimaryKey(GloDict record); List> getTeacherPact(Map params); List> getPeoType(Map params); List> getOrgType(Map params); //查询全局字典集合 List> getGloDicts(Map params); //逻辑删除 Integer deleteGloDicts(Integer id); //查询全局字典集合数 Integer getGloDictsCount(Map params); }