2024-10-13 17:04:47 +08:00
|
|
|
|
namespace LMS.Repository.DTO.UserDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public class UserCollectionDto : UserBaseDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public List<string> RoleNames { get; set; } = [];
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime CreatedDate { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime LastLoginDate { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public long ParentId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string LastLoginIp { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
public string LastLoginDevice { get; set; } = string.Empty;
|
2024-10-30 15:34:18 +08:00
|
|
|
|
|
|
|
|
|
|
public string Remark { get; set; } = string.Empty;
|
2024-10-13 17:04:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|