2022-10-13 14:04:48 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2023-01-02 14:29:16 +08:00
|
|
|
|
namespace Yi.Framework.DtoModel.Base.Vo
|
2022-10-13 14:04:48 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 前端只需要这些数据即可
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class UserVo
|
|
|
|
|
|
{
|
2023-01-05 20:32:58 +08:00
|
|
|
|
public string? Name { get; set; }
|
2022-10-13 14:04:48 +08:00
|
|
|
|
|
|
|
|
|
|
public int? Age { get; set; }
|
|
|
|
|
|
|
2023-01-05 20:32:58 +08:00
|
|
|
|
public string? UserName { get; set; }
|
2022-10-13 14:04:48 +08:00
|
|
|
|
|
2023-01-05 20:32:58 +08:00
|
|
|
|
public string? Icon { get; set; }
|
2022-10-13 14:04:48 +08:00
|
|
|
|
|
2023-01-05 20:32:58 +08:00
|
|
|
|
public string? Nick { get; set; }
|
2022-10-13 14:04:48 +08:00
|
|
|
|
|
|
|
|
|
|
//public string Email { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
//public string Ip { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//public string Address { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
//public string Phone { get; set; }
|
|
|
|
|
|
|
2023-01-05 20:32:58 +08:00
|
|
|
|
public string? Introduction { get; set; }
|
2022-10-13 14:04:48 +08:00
|
|
|
|
|
|
|
|
|
|
public int? Sex { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|