ComplianceServer/oldcode/Model/Entity/CSVR_CALLRECORDUN.cs

60 lines
1.6 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.CSVR_CALLRECORDUN")]
public partial class CSVR_CALLRECORDUN
{
[Key]
public decimal PKID { get; set; }
public decimal? RECORDID { get; set; }
[StringLength(150)]
public string SERVERID { get; set; }
[StringLength(150)]
public string FILENAME { get; set; }
[StringLength(18)]
public string RESID { get; set; }
[StringLength(32)]
public string SERVICENUMBER { get; set; }
[StringLength(32)]
public string TELNUMBERLAST4 { get; set; }
public decimal? TIMELENGTH { get; set; }
public decimal? CALLTYPE { get; set; }
public decimal? SALESEID { get; set; }
public DateTime? TIMESTART { get; set; }
public DateTime CTIME { get; set; }
public DateTime? TIMEEND { get; set; }
[StringLength(50)]
public string COID { get; set; }
[StringLength(50)]
public string DISPOSITION { get; set; }
[StringLength(50)]
public string RECALLCOID { get; set; }
public string DEPTID { get; set; }
public string DEPTNAME { get; set; }
public decimal? EID { get; set; }
public string ENAME { get; set; }
public string OFFICIALNUMBER { get; set; }
public decimal? PUSHED { get; set; }
public DateTime? REMINDTIME { get; set; }
public decimal? ISHF { get; set; }
}
}