package com.lf.server.mapper.sys; import com.lf.server.entity.sys.AuthEntity; import org.apache.ibatis.annotations.Mapper; import org.springframework.web.bind.annotation.ResponseBody; import java.util.List; /** * 权限表 * @author */ @Mapper @ResponseBody public interface AuthMapper { /** * 根据表名查询记录数 * * @param name 名称 * @return 记录数 */ public Integer selectCount(String name); /** * 根据表名分页查询 * * @param name 名称 * @param limit 记录表 * @param offset 偏移量 * @return 列表 */ public List selectByPage(String name, Integer limit, Integer offset); /** * 添加数据 * * @param authEntity * @return */ public Integer insertAuth(AuthEntity authEntity); /** * 批量添加 * * @param authEntity * @return */ public Integer insertAuths(List authEntity); /** * 刪除数据 * * @param id * @return */ public Integer deleteAuth(int id); /** * 批量删除 * * @param ids * @return */ public Integer deleteAuths(List ids); /** * 修改数据 * * @param authEntity * @return */ public Integer updateAuth(AuthEntity authEntity); /** * 查询单条数据 * * @param id * @return */ public AuthEntity selectAuth(int id); /** * 查询全部数据 * * @return */ public List selectAuthAll(); }