namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.SOFT_USER_LOG")] public partial class SOFT_USER_LOG { /// /// Desc:ÈÎÎñID /// Default: /// Nullable:False /// [Key] public decimal PKID { get; set; } [StringLength(50)] public string USERNAME { get; set; } [StringLength(255)] public string OLDRESID { get; set; } [StringLength(255)] public string NEWRESID { get; set; } public int TYPE { get; set; } public DateTime? CTIME { get; set; } } }