You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
557 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Txgy.EWS.Client.IDAL
{
public interface IUserDal
{
// 获取所有有效的用户信息
Task<string> GetAll();
//修改状态
Task ChangeState(int userId, int state);
// 修改用户信息
Task SaveUser(string data);
// 重置密码
Task ResetPassword(int userId);
// 更新用户角色
Task UpdateRoles(int userId, string roles);
}
}