ComplianceServer/oldcode/Model/Entity/BAS_USERGROUPCHANGELOG.cs

28 lines
654 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.BAS_USERGROUPCHANGELOG")]
public partial class BAS_USERGROUPCHANGELOG
{
[Key]
public decimal PKID { get; set; }
public decimal? NEWGROUPID { get; set; }
public decimal? OLDGROUPID { get; set; }
public decimal? SALESID { get; set; }
public decimal? SALESEID { get; set; }
public DateTime? INDATE { get; set; }
public DateTime? OUTDATE { get; set; }
public DateTime? CTIME { get; set; }
}
}