using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Systems.Entitys.System;
///
/// 系统功能按钮.
///
[SugarTable("BASE_MODULECOLUMN")]
public class ModuleColumnEntity : CLDEntityBase
{
///
/// 列表上级.
///
[SugarColumn(ColumnName = "F_PARENTID")]
public string ParentId { get; set; }
///
/// 列表名称.
///
[SugarColumn(ColumnName = "F_FULLNAME")]
public string FullName { get; set; }
///
/// 列表编码.
///
[SugarColumn(ColumnName = "F_ENCODE")]
public string EnCode { get; set; }
///
/// 绑定表格Id.
///
[SugarColumn(ColumnName = "F_BINDTABLE")]
public string BindTable { get; set; }
///
/// 绑定表格描述.
///
[SugarColumn(ColumnName = "F_BINDTABLENAME")]
public string BindTableName { 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; }
///
/// 功能主键.
///
[SugarColumn(ColumnName = "F_MODULEID")]
public string ModuleId { get; set; }
///
/// 规则(0:主表,1:副表 2:子表).
///
[SugarColumn(ColumnName = "F_FIELDRULE")]
public int? FieldRule { get; set; }
///
/// 子表规则key.
///
[SugarColumn(ColumnName = "F_CHILDTABLEKEY")]
public string ChildTableKey { get; set; }
}