- 替换原有自定义生命周期接口为通用基础服务体系 - 将所有实体基类替换为带雪花ID的SqlSugarBaseEntity - 迁移DTO到Models项目并统一管理 - 移除冗余的Repository层实现,改用通用基础服务 - 添加Yitter.IdGenerator雪花ID生成支持 - 重构SqlSugar数据库上下文与依赖注入配置 - 新增微信用户、用户勋章、背包等实体与配套服务 - 整理分页查询与结果封装类 - 优化WebApi控制器结构
41 lines
841 B
C#
41 lines
841 B
C#
namespace QYZH.InteractiveMagazine.Models.Dto;
|
|
|
|
|
|
/// <summary>
|
|
/// 管理员登录输入
|
|
/// </summary>
|
|
public class AdminLoginInput
|
|
{
|
|
/// <summary>
|
|
/// 用户名
|
|
/// </summary>
|
|
public string UserName { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 密码
|
|
/// </summary>
|
|
public string Password { get; set; } = string.Empty;
|
|
}
|
|
|
|
public class AdminLoginOutput
|
|
{
|
|
public string Token { get; set; } = string.Empty;
|
|
|
|
public long UserId { get; set; }
|
|
|
|
public string UserName { get; set; } = string.Empty;
|
|
|
|
public string Type { get; set; } = string.Empty;
|
|
}
|
|
|
|
public class AdminUserInfoOutput
|
|
{
|
|
public long UserId { get; set; }
|
|
|
|
public string UserName { get; set; } = string.Empty;
|
|
|
|
public string Type { get; set; } = string.Empty;
|
|
|
|
public string Status { get; set; } = string.Empty;
|
|
}
|