ComplianceServer/oldcode/Model/Entity/CSVR_CALLSTATIS.cs

28 lines
659 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.CSVR_CALLSTATIS")]
public partial class CSVR_CALLSTATIS
{
[Key]
public decimal PKID { get; set; }
public decimal? SALESEID { get; set; }
public DateTime? COUNTDATE { get; set; }
public decimal? SATISFACTION1 { get; set; }
public decimal? SATISFACTION2 { get; set; }
public decimal? SATISFACTION3 { get; set; }
public decimal? SATISFACTION4 { get; set; }
public DateTime CTIME { get; set; }
}
}