using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.Systems.Entitys.Permission; /// /// 分级管理 /// 版 本:V3.2.0 /// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com) /// 日 期:2021.09.27. /// [SugarTable("BASE_ORGANIZEADMINISTRATOR")] public class OrganizeAdministratorEntity : CLDEntityBase { /// /// 用户ID. /// [SugarColumn(ColumnName = "F_USERID")] public string UserId { get; set; } /// /// 机构ID. /// [SugarColumn(ColumnName = "F_ORGANIZEID")] public string OrganizeId { get; set; } /// /// 机构类型. /// [SugarColumn(ColumnName = "F_ORGANIZETYPE")] public string OrganizeType { get; set; } /// /// 本层级添加. /// [SugarColumn(ColumnName = "F_THISLAYERADD")] public int ThisLayerAdd { get; set; } /// /// 本层级编辑. /// [SugarColumn(ColumnName = "F_THISLAYEREDIT")] public int ThisLayerEdit { get; set; } /// /// 本层级删除. /// [SugarColumn(ColumnName = "F_THISLAYERDELETE")] public int ThisLayerDelete { get; set; } /// /// 子层级添加. /// [SugarColumn(ColumnName = "F_SUBLAYERADD")] public int SubLayerAdd { get; set; } /// /// 子层级编辑. /// [SugarColumn(ColumnName = "F_SUBLAYEREDIT")] public int SubLayerEdit { get; set; } /// /// 子层级删除. /// [SugarColumn(ColumnName = "F_SUBLAYERDELETE")] public int SubLayerDelete { get; set; } /// /// 描述. /// [SugarColumn(ColumnName = "F_DESCRIPTION")] public string Description { get; set; } /// /// 排序码. /// [SugarColumn(ColumnName = "F_SORTCODE")] public long? SortCode { get; set; } /// /// 本层级查看. /// [SugarColumn(ColumnName = "F_ThisLayerSelect")] public int ThisLayerSelect { get; set; } /// /// 子层级查看. /// [SugarColumn(ColumnName = "F_SubLayerSelect")] public int SubLayerSelect { get; set; } }