using HighWayIot.Repository.domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HighWayIot.Repository.service { public interface ISysUserRoleService { /// /// 条件查询所有角色列表 /// /// 用户名 /// 用户角色 /// 开始时间 /// 结束时间 /// 是否 /// List GetRoleInfos(); /// /// 添加角色信息 /// /// /// bool InsertRoleInfo(SysRoleEntity sysRoleEntity); /// /// 修改角色信息 /// /// /// bool UpdateRoleInfo(SysRoleEntity sysRoleEntity); /// /// 根据ID删除角色信息 /// /// /// bool DeleteRoleInfoById(int id); } }