using System; namespace CRM.Core.DTO.Ord { /// /// 合规信息 /// public class HgRecordDto { public decimal PKID { get; set; } public string COMPANYCODE { get; set; } public decimal? RECORDID { get; set; } public string FILENAME { get; set; } public string RESID { get; set; } public string SERVICENUMBER { get; set; } public string TELNUMBERLAST4 { get; set; } public decimal? TIMELENGTH { get; set; } public decimal? SALESEID { get; set; } public DateTime? TIMESTART { get; set; } public DateTime? TIMEEND { get; set; } public DateTime? CTIME { get; set; } public decimal? INNERUSERID { get; set; } public decimal? MEMOID { get; set; } public short? ISDOWN { get; set; } public string SERVERID { get; set; } public decimal? RECORDTYPE { get; set; } public int OrderId { get; set; } public string CONTENT { get; set; } } }