using System; namespace NetCore.Model.crm { public class hg_record_message { public int id { get; set; } /// /// 录音pkid /// public decimal pkid { get; set; } /// /// 合规时间 /// public DateTime checkdate { get; set; } public DateTime ctime { get; set; } /// /// 翻译执行时间 /// public DateTime? transtime { get; set; } /// /// 翻译后的内容 /// public string transcontent { get; set; } /// /// 合规状态 500违规 200已读 90未读 /// public int hgstatus { get; set; } /// /// 合规时间 /// public DateTime? hgtime { get; set; } /// /// 录音地址 /// public string voiceurl { get; set; } /// /// 资源id /// public string resid { get; set; } public string filename { get; set; } /// /// 客户姓名 /// public string customername { get; set; } /// /// 工号 /// public decimal saleseid { get; set; } /// /// 客服姓名 /// public string salename { get; set; } /// /// 违规关键词 /// public string word { get; set; } public string detpcode { get; set; } } }