using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Core { /// /// /// [SugarTable("ACL_USERELATION")] public partial class ACL_USERELATION { public ACL_USERELATION(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string F_NO {get;set;} /// /// Desc:1.角色用户,2roleper,3.角色仓库 /// Default: /// Nullable:False /// public string F_TYPENUM {get;set;} /// /// Desc:角色表 /// Default: /// Nullable:True /// public string F_ROLENO {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string F_RIGHTNO {get;set;} } }