using QYZH.InteractiveMagazine.IService.Dto; using QYZH.InteractiveMagazine.Models.Dto; using QYZH.InteractiveMagazine.Models.Entity; namespace QYZH.InteractiveMagazine.IService; public interface IUsersService : IBaseService { /// /// 分页查询用户列表 /// Task>> GetListAsync(UsersQueryInput input); /// /// 获取用户详情 /// Task> GetDetailAsync(long id); /// /// 更新用户状态 /// Task UpdateStatusAsync(long id, UpdateUserStatusInput input); }