crm.core/code/Crm.Core.Entity/Crm/CSVR_TODAYRECORD.cs

50 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Entity.Crm
{
[Table("CSVR_TODAYRECORD")]
public class CSVR_TODAYRECORD
{
[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; }
[StringLength(50)]
public string COID { get; set; }
public DateTime? TIMEEND { get; set; }
public decimal? ISTRAN { get; set; }
}
}