using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Core { /// /// /// [SugarTable("ACL_USERRELATION")] public partial class ACL_USERRELATION { public ACL_USERRELATION(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string F_NO {get;set;} /// /// Desc:用户编号 /// Default: /// Nullable:False /// public string F_USERNO {get;set;} /// /// Desc:对象类型 /// Default: /// Nullable:True /// public int? F_OBJTYPENUM {get;set;} /// /// Desc:对象值 /// Default: /// Nullable:False /// public string F_ITEMNO {get;set;} } }