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.
31 lines
555 B
31 lines
555 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace GDZZ.Application
|
|
{
|
|
/// <summary>
|
|
/// 职位管理输出参数
|
|
/// </summary>
|
|
public class PositionOutput
|
|
{
|
|
/// <summary>
|
|
/// 主键Id
|
|
/// </summary>
|
|
public string region_id { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public long ID { get; set; }
|
|
|
|
public string Label { get; set; }
|
|
|
|
public string Value { get; set; }
|
|
|
|
public List<PositionOutput> Children { get; set; }
|
|
|
|
|
|
}
|
|
|
|
}
|