using GDZZ.Core; using SqlSugar; using System; using System.Collections.Generic; namespace GDZZ.Application { /// /// 职位管理输出参数 /// public class PositionOutput { public string Code { get; set; } /// /// 职位名称 /// public string PositionName { get; set; } /// /// 职位等级 /// public PositionEnum PositionLevel { get; set; } /// /// 父级 /// public long ParentID { get; set; } /// /// 父Ids /// [SugarColumn(ColumnDescription = "父Ids", IsNullable = true)] public string Pids { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 状态(字典 0正常 1停用 2删除) /// [SugarColumn(ColumnDescription = "状态(字典 0正常 1停用 2删除)")] public CommonStatus Status { get; set; } /// /// 主键Id /// public string region_id { get; set; } /// /// /// public long ID { get; set; } public string Label { get; set; } public string Value { get; set; } public List Children { get; set; } } }