You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
632 B
29 lines
632 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Znyc.Recruitment.Admin.Security.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 省市区三级输出模型
|
|
/// </summary>
|
|
[Serializable]
|
|
public class RegionOutputDto
|
|
{
|
|
/// <summary>
|
|
/// Id
|
|
/// </summary>
|
|
public long RegionId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 父级Id
|
|
/// </summary>
|
|
public long ParentId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
public List<RegionOutputDto> Childers { get; set; }
|
|
}
|
|
}
|