From 22a3da650824233fb65fd67db5c10d096085137b Mon Sep 17 00:00:00 2001 From: 362270511 <362270511@qq.com> Date: Sun, 20 Oct 2024 22:59:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20Admin.NET/Admin.NET.Core/S?= =?UTF-8?q?ervice/Region/Dto/RegionInput.cs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加查询行政区dto --- .../Service/Region/Dto/RegionInput.cs | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) 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 { ///