添加项目文件。
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
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 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user