ComplianceServer/oldcode/Core.Model/EntityFB/csvr_callrecord.cs

27 lines
866 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace CRM.Core.Model.EntityFB
{
public class Csvr_CallRecord
{
[Key]
public long pkid { get; set; }
public long recordid { get; set; }
public string serverid { get; set; }
public string filename { get; set; }
public string resid { get; set; }
public string servicenumber { get; set; }
public string telnumberlast4 { get; set; }
public int timelength { get; set; }
public int calltype { get; set; }
public long saleseid { get; set; }
public DateTime timestart { get; set; }
public DateTime ctime { get; set; }
public DateTime timeend { get; set; }
public string coid { get; set; }
public int istran { get; set; }
public int ischecked { get; set; }
}
}