You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
781 B
36 lines
781 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CK.SCP.Models.ScpEntity
|
|
{
|
|
public partial class TL_BASEDATA
|
|
{
|
|
[Key]
|
|
public long UID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(80)]
|
|
public string OperName { get; set; }
|
|
|
|
public DateTime LogTime { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string LogType { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string DataType { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(4000)]
|
|
public string OldValue { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(4000)]
|
|
public string NewValue { get; set; }
|
|
|
|
[StringLength(500)]
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|
|
|