2026-06-05 17:57:24 +08:00
|
|
|
|
2026-06-03 16:09:56 +08:00
|
|
|
using QYZH.InteractiveMagazine.Models.Dto;
|
|
|
|
|
using QYZH.InteractiveMagazine.Models.Entity;
|
|
|
|
|
|
|
|
|
|
namespace QYZH.InteractiveMagazine.IService;
|
|
|
|
|
|
|
|
|
|
public interface IUsersService : IBaseService<Users>
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 分页查询用户列表
|
|
|
|
|
/// </summary>
|
|
|
|
|
Task<BaseResponse<PageListModel<UsersOutput>>> GetListAsync(UsersQueryInput input);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取用户详情
|
|
|
|
|
/// </summary>
|
|
|
|
|
Task<BaseResponse<UsersOutput>> GetDetailAsync(long id);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 更新用户状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
Task<BaseResponse> UpdateStatusAsync(long id, UpdateUserStatusInput input);
|
|
|
|
|
}
|