更改null操作

This commit is contained in:
橙子
2023-01-05 20:32:58 +08:00
parent efbf799218
commit b7c9b84449
25 changed files with 71 additions and 76 deletions

View File

@@ -11,15 +11,15 @@ namespace Yi.Framework.DtoModel.Base.Vo
/// </summary>
public class UserVo
{
public string Name { get; set; }
public string? Name { get; set; }
public int? Age { get; set; }
public string UserName { get; set; }
public string? UserName { get; set; }
public string Icon { get; set; }
public string? Icon { get; set; }
public string Nick { get; set; }
public string? Nick { get; set; }
//public string Email { get; set; }
@@ -30,7 +30,7 @@ namespace Yi.Framework.DtoModel.Base.Vo
//public string Phone { get; set; }
public string Introduction { get; set; }
public string? Introduction { get; set; }
public int? Sex { get; set; }
}