30 lines
700 B
C#
30 lines
700 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.HIS_BAS_OPERATIONLOG")]
|
|
public partial class HIS_BAS_OPERATIONLOG
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public decimal OPUSER_ID { get; set; }
|
|
|
|
public decimal? OPUSER_EID { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string REQUESTURL { get; set; }
|
|
|
|
[StringLength(30)]
|
|
public string CLIENTIP { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(200)]
|
|
public string OPREMARK { get; set; }
|
|
|
|
public DateTime OPTIME { get; set; }
|
|
}
|
|
}
|