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; } } }