Skip to content

Commit

Permalink
修复地区同步数据树解析
Browse files Browse the repository at this point in the history
  • Loading branch information
YeRenJie committed Oct 26, 2024
1 parent 9e9ab5f commit 944dad1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace ZhonTai.Admin.Domain.Region;
[Table(Name = "base_region")]
[Index("idx_{tablename}_01", nameof(ParentId) + "," + nameof(Name), true)]
[Index("idx_{tablename}_02", nameof(ParentId) + "," + nameof(Code), true)]
public partial class RegionEntity : EntityBase
public partial class RegionEntity : EntityBase, IChilds<RegionEntity>
{
/// <summary>
/// 上级Id
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[]

0 comments on commit 944dad1

Please sign in to comment.