SACenter/SA.Entity/zxdcrm_Models/QcCustomercomplain.cs

172 lines
4.9 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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