namespace OASystem.Domain.Entities.System
{
///
/// 页面权限表
///
[SugarTable("Sys_SystemMenuPermission")]
public class Sys_SystemMenuPermission:EntityBase
{
///
/// 页面名称
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(80)")]
public string Name { get; set; }
///
/// 是否启用
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int IsEnable { get; set; }
///
/// 模块Id
///
[SugarColumn(IsNullable = true,ColumnDataType ="int")]
public int Mid { get; set; }
///
/// 页面权限Code
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
public string SystemMenuCode { get; set; }
///
/// web端URL
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string WebUrl { get; set; }
///
/// Android端URL
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string AndroidUrl { get; set; }
///
/// iOS端URL
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string IosUrl { get; set; }
///
/// 手机端是否启用
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int PhoneIsEnable { get; set; }
///
/// 手机端图标
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
public string Icon { get; set; }
}
}