using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using IoTIntegrationPlatform.Model.common;
using IoTIntegrationPlatform.Model.Model;
namespace IoTIntegrationPlatform.Interface
{
public interface IAdminUserService
{
///
/// 获取管理人员信息
///
///
///
///
///
AdminUser GetAdminUserInfo(string uuid, string account, string passWord, string mobile);
///
/// 获取用户列表
///
///
///
///
List GetUserList(BaseParm parm, ref int totalPage);
///
/// 新增管理员
///
///
///
bool Add(AdminUser model);
///
/// 编辑管理员
///
///
///
bool UpdateUser(AdminUser model);
///
/// 删除管理员
///
///
///
bool DeleteUser(BaseParm parm);
///
/// 获取用户菜单权限
///
///
///
List GetUserMenus(int userid);
///
/// 修改密码
///
///
///
bool UpdatePassWord(AdminUser model);
}
}