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.
27 lines
559 B
27 lines
559 B
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Znyc.Admin.Security.Dtos
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// uniapp 地区选择
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
public class AreaPickerOutputDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 值
|
||
|
/// </summary>
|
||
|
public long value { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 显示内容
|
||
|
/// </summary>
|
||
|
public string label { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public List<AreaPickerOutputDto> children { get; set; }
|
||
|
}
|
||
|
}
|