using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Systems.Entitys.System;
///
/// 系统功能按钮.
///
[SugarTable("BASE_MODULEBUTTON")]
public class ModuleButtonEntity : 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; }
///
/// 按钮图标.
///
[SugarColumn(ColumnName = "F_ICON")]
public string Icon { get; set; }
///
/// 请求地址.
///
[SugarColumn(ColumnName = "F_URLADDRESS")]
public string UrlAddress { 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; }
}