using Admin.NET.Core; namespace Admin.NET.Application { /// /// 组织机构参数 /// public class OrgOutput { /// /// 机构类型 /// public string OrgType { get; set; } /// /// 机构Id /// public long Id { get; set; } /// /// 父Id /// public long Pid { get; set; } /// /// 父Ids /// public string Pids { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 电话 /// public string Tel { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 状态(字典 0正常 1停用 2删除) /// public CommonStatus Status { get; set; } } }