更改null操作
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user