using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("qc_customercomplain")] public partial class QcCustomercomplain { public QcCustomercomplain(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,ColumnName="pkid")] public long Pkid {get;set;} /// /// Desc:资源ID /// Default: /// Nullable:False /// [SugarColumn(ColumnName="resid")] public string Resid {get;set;} /// /// Desc:员工id /// Default: /// Nullable:False /// [SugarColumn(ColumnName="salesid")] public long Salesid {get;set;} /// /// Desc:原因 /// Default: /// Nullable:False /// [SugarColumn(ColumnName="reason")] public string Reason {get;set;} /// /// Desc:状态(-1:未处理; 0:处理中;1:已处理) /// Default: /// Nullable:False /// [SugarColumn(ColumnName="status")] public int Status {get;set;} /// /// Desc:投诉来源类型(1:电话投诉;2:微信投诉) /// Default: /// Nullable:True /// [SugarColumn(ColumnName="fromtype")] public string? Fromtype {get;set;} /// /// Desc:投诉等级 /// Default: /// Nullable:False /// [SugarColumn(ColumnName="complainlevel")] public string Complainlevel {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="ctime")] public DateTime? Ctime {get;set;} /// /// Desc:修改时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="utime")] public DateTime? Utime {get;set;} /// /// Desc:服务器ID /// Default: /// Nullable:True /// [SugarColumn(ColumnName="serverid")] public string? Serverid {get;set;} /// /// Desc:文件路径 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="filename")] public string? Filename {get;set;} /// /// Desc:录音编号 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="recordid")] public long? Recordid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="recorddate")] public DateTime? Recorddate {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="tradecode")] public string? Tradecode {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="deptauditpkid")] public long? Deptauditpkid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="complianguid")] public string? Complianguid {get;set;} /// /// Desc:未处理提醒具体时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="unhandlewarntime")] public DateTime? Unhandlewarntime {get;set;} /// /// Desc:未处理完成提醒具体时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="handlewarntime")] public DateTime? Handlewarntime {get;set;} /// /// Desc:公司编码 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="companycode")] public string? Companycode {get;set;} } }