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

40 lines
922 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.WX_SYSTEMPAUSELOG")]
public class WX_SYSTEMPAUSELOG
{
[Key]
public decimal PKID { get; set; }
[StringLength(100)]
public string USERNAME { get; set; }
[StringLength(100)]
public string ALIAS { get; set; }
[StringLength(100)]
public string NICKNAME { get; set; }
public decimal? INNERUSERID { get; set; }
public decimal? PAUSETYPE { get; set; }
public DateTime CTIME { get; set; }
public decimal? ISVALID { get; set; }
[StringLength(200)]
public string MEMO { get; set; }
public decimal? PAUSEREASON { get; set; }
public decimal? OPERATERID { get; set; }
public decimal? DURMINUTE { get; set; }
}
}