using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// /// /// [SugarTable("Inquiry_FollowRecordInfo")] public partial class Inquiry_FollowRecordInfo { public Inquiry_FollowRecordInfo(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsIdentity=true)] public int KeyId {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public int FollowTypeId {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public int IntentTypeId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public decimal? CustomerPrice {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string FollowRecord {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public DateTime FollowTime {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public int RecordId {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public string FollowPerson {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? ResultStatus {get;set;} } }