32 lines
654 B
32 lines
654 B
5 years ago
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace CK.SCP.Models.ScpEntity
|
||
|
{
|
||
|
public partial class TL_OPER
|
||
|
{
|
||
|
[Key]
|
||
|
public long UID { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(80)]
|
||
|
public string OperCode { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(50)]
|
||
|
public string OperName { get; set; }
|
||
|
|
||
|
public DateTime LogTime { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(50)]
|
||
|
public string LogType { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(200)]
|
||
|
public string LogSite { get; set; }
|
||
|
|
||
|
public string Message { get; set; }
|
||
|
}
|
||
|
}
|