1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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("Acl_Authorize")]
- public class AclAuthorize : BaseModel
- {
- /// <summary>
- /// 0用户, 1 角色 , 2用户组
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "0用户, 1 角色 , 2用户组")]
- public int ObjTypeNum { get; set; }
- /// <summary>
- /// 设置项
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = false, ColumnDescription = "设置项")]
- public string ItemNO { get; set; }
- /// <summary>
- /// 1WebApp权限 2OnlineRFApp权限 3仓库权限 4供应商权限
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false, ColumnDescription = "1WebApp权限 2OnlineRFApp权限 3仓库权限 4供应商权限")]
- public int AclTypeNum { get; set; }
- /// <summary>
- /// ObjNO
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
- public string ObjNO { get; set; }
- /// <summary>
- /// WarehouseNo
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
- public string WarehouseNo { get; set; }
- }
- }
|