ComplianceServer/oldcode/Model/Entity/WX_AFTERSALES3_LOG.cs

27 lines
692 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
/// <summary>
/// 高级客服功能
/// </summary>
[Table("UPDEV.WX_AFTERSALES3_LOG")]
public class WX_AFTERSALES3_LOG
{
[Key]
public decimal PKID { get; set; }
public string RESID { get; set; }
public decimal INNERUSERID { get; set; }
public decimal? OLD_INNERUSERID { get; set; }
public DateTime STARTDATE { get; set; }
public DateTime ENDDATE { get; set; }
public decimal? OPERATORID { get; set; }
public DateTime CTIME { get; set; }
}
}