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

26 lines
609 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.BAS_INNERUSER_EXT_LOG")]
public partial class BAS_INNERUSER_EXT_LOG
{
[Key]
public decimal PKID { get; set; }
public decimal INNERUSERID { get; set; }
public decimal EXTENDTYPE { get; set; }
public decimal? NEWSTATUS { get; set; }
public decimal? OLDSTATUS { get; set; }
public decimal? OPTIONUSER { get; set; }
public DateTime? UTIME { get; set; }
}
}