using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.Systems.Entitys.Permission; /// /// 机构管理 /// 版 本:V3.0.0 /// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com) /// 日 期:2017.09.20. /// [SugarTable("BASE_ORGANIZE")] public partial class OrganizeEntity : CLDEntityBase { /// /// 机构上级. /// [SugarColumn(ColumnName = "F_PARENTID")] public string ParentId { get; set; } /// /// 父级组织. /// [SugarColumn(ColumnName = "F_ORGANIZEIDTREE")] public string OrganizeIdTree { get; set; } /// /// 机构分类【company-公司、department-部门】. /// [SugarColumn(ColumnName = "F_CATEGORY")] public string Category { get; set; } /// /// 机构编码. /// [SugarColumn(ColumnName = "F_ENCODE")] public string EnCode { get; set; } /// /// 机构名称. /// [SugarColumn(ColumnName = "F_FULLNAME")] public string FullName { get; set; } /// /// 机构主管. /// [SugarColumn(ColumnName = "F_MANAGERID")] public string ManagerId { get; set; } /// /// 扩展属性. /// [SugarColumn(ColumnName = "F_PROPERTYJSON")] public string PropertyJson { get; set; } /// /// 描述. /// [SugarColumn(ColumnName = "F_DESCRIPTION")] public string Description { get; set; } /// /// 排序码. /// [SugarColumn(ColumnName = "F_SORTCODE")] public long? SortCode { get; set; } }