新增 用户备注 管理员再用户编辑时可填

This commit is contained in:
2024-10-30 15:34:18 +08:00
parent 3927fd21b5
commit 26d190afa1
7 changed files with 44 additions and 10 deletions
@@ -13,5 +13,7 @@
public string LastLoginIp { get; set; } = string.Empty;
public string LastLoginDevice { get; set; } = string.Empty;
public string Remark { get; set; } = string.Empty;
}
}
+8
View File
@@ -30,8 +30,16 @@ namespace LMS.Repository.DTO.UserDto
/// </summary>
public string AffiliateCode { get; set; } = string.Empty;
/// <summary>
/// 所属用户ID
/// </summary>
public long ParentId { get; set; }
/// <summary>
/// 备注
/// </summary>
public string? Remark { get; set; } = string.Empty;
/// <summary>
/// 放一些操作信息 不能频繁的修改数据库,使用的json格式存放
/// </summary>