更新 Admin.NET/Admin.NET.Core/Service/Region/Dto/RegionInput.cs

添加查询行政区dto
This commit is contained in:
362270511 2024-10-20 22:59:46 +08:00
parent 5108272ae2
commit 22a3da6508

View File

@ -28,6 +28,27 @@ public class RegionInput : BaseIdInput
{ {
} }
public class QueryRegionInput
{
/// <summary>
/// 父节点Id
/// </summary>
public long? Pid { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 编码
/// </summary>
public string Code { get; set; }
/// <summary>
/// 类型
/// </summary>
public string Type { get; set; }
}
public class AddRegionInput : SysRegion public class AddRegionInput : SysRegion
{ {
/// <summary> /// <summary>