fix:完成非空问题修复

This commit is contained in:
橙子
2023-04-20 23:08:21 +08:00
parent b55a45baa2
commit c943c1fc74
68 changed files with 206 additions and 209 deletions

View File

@@ -17,6 +17,6 @@ namespace Yi.Furion.Core.Rbac.Dtos.Post
public bool State { get; set; }
public string PostCode { get; set; } = string.Empty;
public string PostName { get; set; } = string.Empty;
public string Remark { get; set; }
public string? Remark { get; set; }
}
}

View File

@@ -6,6 +6,6 @@ namespace Yi.Furion.Core.Rbac.Dtos.Post
{
public bool? State { get; set; }
//public string? PostCode { get; set; }=string.Empty;
public string PostName { get; set; } = string.Empty;
public string? PostName { get; set; } = string.Empty;
}
}

View File

@@ -9,7 +9,7 @@ namespace Yi.Furion.Core.Rbac.Dtos.Post
public bool State { get; set; }
public string PostCode { get; set; } = string.Empty;
public string PostName { get; set; } = string.Empty;
public string Remark { get; set; }
public string? Remark { get; set; }
public int OrderNum { get; set; }
}

View File

@@ -11,7 +11,7 @@ namespace Yi.Furion.Core.Rbac.Dtos.Post
public bool State { get; set; }
public string PostCode { get; set; } = string.Empty;
public string PostName { get; set; } = string.Empty;
public string Remark { get; set; }
public string? Remark { get; set; }
public int OrderNum { get; set; }
}

View File

@@ -10,6 +10,6 @@ namespace Yi.Furion.Core.Rbac.Dtos.Post
public bool State { get; set; }
public string PostCode { get; set; } = string.Empty;
public string PostName { get; set; } = string.Empty;
public string Remark { get; set; }
public string? Remark { get; set; }
}
}