mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-06 09:16:39 +08:00
模板重新生成可空类型
This commit is contained in:
@@ -9,8 +9,8 @@ namespace Yi.Framework.DtoModel.Base.Dto
|
||||
{
|
||||
public class RoleInfoDto
|
||||
{
|
||||
public RoleEntity Role { get; set; }
|
||||
public List<long> DeptIds { get; set; }
|
||||
public List<long> MenuIds { get; set; }
|
||||
public RoleEntity Role { get; set; }=new ();
|
||||
public List<long> DeptIds { get; set; } = new ();
|
||||
public List<long> MenuIds { get; set; } = new ();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user