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.
21 lines
422 B
21 lines
422 B
2 years ago
|
using System;
|
||
|
|
||
|
namespace Znyc.Recruitment.Admin.Security.Dtos
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// select2 地区选择
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
public class AreaSelect2OutDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 值
|
||
|
/// </summary>
|
||
|
public long Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 显示内容
|
||
|
/// </summary>
|
||
|
public string text { get; set; }
|
||
|
}
|
||
|
}
|