12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WMS.BZModels.Models.UserCenterManager
- {
- [Tenant("usercenter")]
- [SugarTable("Sys_Module")]
- public class SysModule : BaseModel
- {
- /// <summary>
- /// 模块表-模块编号
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "模块表-模块编号")]
- public string Code { get; set; }
- /// <summary>
- /// 模块父编号
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "模块父编号")]
- public string PNO { get; set; }
- /// <summary>
- /// IsStop
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false)]
- public int IsStop { get; set; }
- /// <summary>
- /// 名称
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false, ColumnDescription = "名称")]
- public string Name { get; set; }
- /// <summary>
- /// 排序号
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "排序号")]
- public int SortNum { get; set; }
- /// <summary>
- /// 图标
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true, ColumnDescription = "图标")]
- public string Icon { get; set; }
- /// <summary>
- /// 是否菜单
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否菜单")]
- public int IsMenu { get; set; }
- /// <summary>
- /// 是否公共,不属于各个仓库
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否公共")]
- public int IsShared { get; set; }
- /// <summary>
- /// 是否展开
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "是否展开")]
- public int AllowExpand { get; set; }
- /// <summary>
- /// 目标
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "目标")]
- public int Target { get; set; }
- /// <summary>
- /// 访问地址
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 150, IsNullable = true, ColumnDescription = "访问地址")]
- public string URLAddr { get; set; }
- /// <summary>
- /// 设定数据
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true, ColumnDescription = "设定数据")]
- public string SetData { get; set; }
- }
- }
|