更新 Admin.NET/Admin.NET.Core/Service/Region/Dto/RegionInput.cs
添加查询行政区dto
This commit is contained in:
parent
5108272ae2
commit
22a3da6508
@ -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
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user