diff --git a/Admin.NET/Admin.NET.Core/Service/Region/Dto/RegionInput.cs b/Admin.NET/Admin.NET.Core/Service/Region/Dto/RegionInput.cs index a0334374..8c127155 100644 --- a/Admin.NET/Admin.NET.Core/Service/Region/Dto/RegionInput.cs +++ b/Admin.NET/Admin.NET.Core/Service/Region/Dto/RegionInput.cs @@ -28,6 +28,27 @@ public class RegionInput : BaseIdInput { } +public class QueryRegionInput +{ + /// + /// 父节点Id + /// + public long? Pid { get; set; } + /// + /// 名称 + /// + public string Name { get; set; } + + /// + /// 编码 + /// + public string Code { get; set; } + /// + /// 类型 + /// + public string Type { get; set; } +} + public class AddRegionInput : SysRegion { ///