using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// /// /// [SugarTable("Integrity_EvaluationRecords")] public partial class Integrity_EvaluationRecords { public Integrity_EvaluationRecords(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsIdentity=true)] public int Keyid {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public Guid MemberId {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public Guid SellerId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public short? BuyerEvaluation {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public short? ScoringSeller {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string BuyerComment {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? BuyerCommentDate {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public short? SellerEvaluation {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public short? ScoringBuyer {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string SellerComment {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? SellerCommentDate {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? EffectiveDate {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? OrderId {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public DateTime LastUpdateTime {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public string Operate {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Remark {get;set;} } }