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 getSysDicts(Map params); //系统字典删除 Integer deleteSysDicts(Integer id); //查询系统字典集合数量 Integer getSysDictsCount(Map params); ////* 系统字典展示查询 List> getSysDictByType(Map params); }