using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///行政物品管理 /// [SugarTable("OA_PropertyManage")] public partial class OA_PropertyManage { public OA_PropertyManage(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:会员编号 /// Default: /// Nullable:True /// public Guid? MemberId {get;set;} /// /// Desc:分类Id /// Default: /// Nullable:True /// public int? CateId {get;set;} /// /// Desc:名称 /// Default: /// Nullable:True /// public string Name {get;set;} /// /// Desc:价格 /// Default: /// Nullable:True /// public decimal? Price {get;set;} /// /// Desc:状态 /// Default: /// Nullable:True /// public int? Status {get;set;} /// /// Desc:总数量 /// Default: /// Nullable:True /// public int? AllNum {get;set;} /// /// Desc:领取数量 /// Default: /// Nullable:True /// public int? ReceiveNum {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:True /// public DateTime? LastUpdateTime {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:True /// public string Operator {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} } }