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.
26 lines
568 B
26 lines
568 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Znyc.Cloudcar.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; }
|
|
}
|
|
}
|