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
609 B
27 lines
609 B
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Znyc.Recruitment.Admin.AspNetCore.ViewModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Vue Cascader 级联选择模型
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
public class VueCascaderModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 值
|
||
|
/// </summary>
|
||
|
public string value { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 显示名称
|
||
|
/// </summary>
|
||
|
public string label { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 子集
|
||
|
/// </summary>
|
||
|
public List<VueCascaderModel> children { get; set; }
|
||
|
}
|
||
|
}
|