48 lines
1.0 KiB
C#
48 lines
1.0 KiB
C#
using Hg.Core.Entity.Views;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity.HgCrm
|
|
{
|
|
public class CsvrCallrecord
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public decimal? 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 decimal? TIMELENGTH { get; set; }
|
|
|
|
public decimal? CALLTYPE { get; set; }
|
|
|
|
public int? SALESEID { get; set; }
|
|
|
|
public DateTime? TIMESTART { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public DateTime? TIMEEND { get; set; }
|
|
|
|
public string? COID { get; set; }
|
|
|
|
public decimal? ISTRAN { get; set; }
|
|
|
|
public decimal? ISCHECKED { get; set; }
|
|
|
|
public string? OUTDEPT { get; set; }
|
|
}
|
|
}
|