TG.WXCRM.V4/Model/Entity/CSVR_CALLSTATISDETAIL.cs

25 lines
583 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.CSVR_CALLSTATISDETAIL")]
public partial class CSVR_CALLSTATISDETAIL
{
[Key]
[StringLength(38)]
public string PKID { get; set; }
public decimal SALESEID { get; set; }
public DateTime INSERTTIME { get; set; }
public decimal SATISFACTION { get; set; }
[Required]
[StringLength(50)]
public string SESSIONID { get; set; }
}
}