ComplianceServer/oldcode/Model/Entity/WX_AFTERSALES_LOG.cs

24 lines
626 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.WX_AFTERSALES_LOG")]
public class WX_AFTERSALES_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; }
}
}