ComplianceServer/oldcode/Model/Entity/CSVR_CALLINLOG.cs

29 lines
660 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.CSVR_CALLINLOG")]
public partial class CSVR_CALLINLOG
{
[Key]
public decimal PKID { get; set; }
[StringLength(80)]
public string SRID { get; set; }
[StringLength(50)]
public string CALLEDNUMBER { get; set; }
[StringLength(18)]
public string RESID { get; set; }
public decimal? CALLSTATE { get; set; }
public decimal? SALESEID { get; set; }
public DateTime CTIME { get; set; }
}
}