using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace ChangKeTec.Wms.Models.Wms { public partial class TL_OPER { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public long UID { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(80)] public string OperCode { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string OperName { get; set; } public DateTime LogTime { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string LogType { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(200)] public string LogSite { get; set; } public string Message { get; set; } } }