Files
tnb.server/system/Tnb.Systems.Entitys/Entity/Permission/OrganizeEntity.cs

68 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Systems.Entitys.Permission;
/// <summary>
/// 机构管理
/// 版 本V3.0.0
/// 版 权拓通智联科技有限公司http://www.tuotong-tech.com
/// 日 期2017.09.20.
/// </summary>
[SugarTable("BASE_ORGANIZE")]
public partial class OrganizeEntity : CLDEntityBase
{
/// <summary>
/// 机构上级.
/// </summary>
[SugarColumn(ColumnName = "F_PARENTID")]
public string ParentId { get; set; }
/// <summary>
/// 父级组织.
/// </summary>
[SugarColumn(ColumnName = "F_ORGANIZEIDTREE")]
public string OrganizeIdTree { get; set; }
/// <summary>
/// 机构分类【company-公司、department-部门】.
/// </summary>
[SugarColumn(ColumnName = "F_CATEGORY")]
public string Category { get; set; }
/// <summary>
/// 机构编码.
/// </summary>
[SugarColumn(ColumnName = "F_ENCODE")]
public string EnCode { get; set; }
/// <summary>
/// 机构名称.
/// </summary>
[SugarColumn(ColumnName = "F_FULLNAME")]
public string FullName { get; set; }
/// <summary>
/// 机构主管.
/// </summary>
[SugarColumn(ColumnName = "F_MANAGERID")]
public string ManagerId { get; set; }
/// <summary>
/// 扩展属性.
/// </summary>
[SugarColumn(ColumnName = "F_PROPERTYJSON")]
public string PropertyJson { get; set; }
/// <summary>
/// 描述.
/// </summary>
[SugarColumn(ColumnName = "F_DESCRIPTION")]
public string Description { get; set; }
/// <summary>
/// 排序码.
/// </summary>
[SugarColumn(ColumnName = "F_SORTCODE")]
public long? SortCode { get; set; }
}