using System;
using System.Collections.Generic;
namespace Znyc.Recruitment.Admin.Security.Dtos
{
///
/// uniapp 地区选择
///
[Serializable]
public class AreaPickerOutputDto
{
///
/// 值
///
public long value { get; set; }
///
/// 显示内容
///
public string label { get; set; }
///
///
public List children { get; set; }
}
}