mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-05 00:37:21 +08:00
更改null操作
This commit is contained in:
@@ -9,9 +9,9 @@ namespace Yi.Framework.DtoModel.Base.Dto
|
||||
{
|
||||
public class UserInfoDto
|
||||
{
|
||||
public UserEntity User { get; set; }
|
||||
public List<long> RoleIds { get; set; }
|
||||
public List<long> PostIds { get; set; }
|
||||
public UserEntity? User { get; set; }
|
||||
public List<long>? RoleIds { get; set; }
|
||||
public List<long>? PostIds { get; set; }
|
||||
public long? DeptId { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user