30 lines
732 B
C#
30 lines
732 B
C#
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
|
|
{
|
|
|
|
/// <summary>
|
|
/// Desc:ÈÎÎñID
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[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; }
|
|
|
|
|
|
}
|
|
}
|