ComplianceServer/oldcode/Core.Model/Entity/CSVR_HGRECORD.cs

57 lines
1.2 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("CSVR_HGRECORD")]
public partial class CSVR_HGRECORD
{
[Key]
public int id { get; set; }
public string COMPANYCODE { get; set; }
public decimal? ORDERID { get; set; }
public decimal? RECORDID { get; set; }
public decimal PKID { get; set; }
/// <summary>
/// 公司编码
/// </summary>
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 string CONTENT { get; set; }
}
}