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