using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///软件销售记录 /// [SugarTable("Soft_SellRecord")] public partial class Soft_SellRecord { public Soft_SellRecord(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:客户编号 /// Default: /// Nullable:True /// public Guid? ClientId {get;set;} /// /// Desc:客户名称 /// Default: /// Nullable:True /// public string ClientName {get;set;} /// /// Desc:客户经理编号 /// Default: /// Nullable:True /// public int? AccountManagerId {get;set;} /// /// Desc:业务经理编号 /// Default: /// Nullable:True /// public int? BusinessManagerId {get;set;} /// /// Desc:软件编号 /// Default: /// Nullable:True /// public int? SoftId {get;set;} /// /// Desc:软件名称 /// Default: /// Nullable:True /// public string SoftName {get;set;} /// /// Desc:数量 /// Default: /// Nullable:True /// public int? SoftQuantity {get;set;} /// /// Desc:单价 /// Default: /// Nullable:True /// public int? SoftUnitprice {get;set;} /// /// Desc:订单金额 /// Default: /// Nullable:True /// public int? OrderMoney {get;set;} /// /// Desc:订单已付金额 /// Default: /// Nullable:True /// public int? OrderReceiveMoney {get;set;} /// /// Desc:订单状态 /// Default: /// Nullable:True /// public int? OrderStatus {get;set;} /// /// Desc:订单号 /// Default: /// Nullable:True /// public string OrderNum {get;set;} /// /// Desc:订单生成时间 /// Default: /// Nullable:True /// public DateTime? CreatTime {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:False /// public DateTime LastUpdateTime {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:False /// public string Operator {get;set;} /// /// Desc:回访状态,1已回访/2未回访 /// Default: /// Nullable:True /// public int? VisitStatus {get;set;} /// /// Desc:软件评分 /// Default: /// Nullable:True /// public string VisitSoftScore {get;set;} /// /// Desc:服务评分 /// Default: /// Nullable:True /// public string VisitSoftServers {get;set;} /// /// Desc:评分理由 /// Default: /// Nullable:True /// public string VisitReason {get;set;} /// /// Desc:维护建议 /// Default: /// Nullable:True /// public string VisitProposal {get;set;} /// /// Desc:回访人 /// Default: /// Nullable:True /// public string VisitPeople {get;set;} /// /// Desc:回访时间 /// Default: /// Nullable:True /// public DateTime? VisitTime {get;set;} /// /// Desc:重要程度 /// Default: /// Nullable:True /// public int? DegreeImportanId {get;set;} /// /// Desc:短信 /// Default: /// Nullable:True /// public string Mobile {get;set;} /// /// Desc:QQ /// Default: /// Nullable:True /// public string QQ {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string OrderRemark {get;set;} } }