ComplianceServer/oldcode/Model/Entity/CSVR_CALLRECORDDAYSTATISTIC...

24 lines
570 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.CSVR_CALLRECORDDAYSTATISTICS")]
public partial class CSVR_CALLRECORDDAYSTATISTICS
{
[Key]
public decimal PKID { get; set; }
[Required]
[StringLength(18)]
public string RESID { get; set; }
public short HASCONTACT { get; set; }
public short HASEFFECTCONTACT { get; set; }
public DateTime CONTACTDATE { get; set; }
}
}