using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace ChangKeTec.Wms.Models.Wms { public partial class VIEW_OPER_LOG { [Key] [Column(Order = 0)] public long UID { get; set; } [Key] [Column(Order = 1)] [StringLength(80)] public string 工号 { get; set; } [Key] [Column(Order = 2)] [StringLength(50)] public string 操作员 { get; set; } [Key] [Column(Order = 3)] public DateTime 日志时间 { get; set; } [Key] [Column(Order = 4)] [StringLength(50)] public string 日志类型 { get; set; } [Key] [Column(Order = 5)] [StringLength(200)] public string 客户端 { get; set; } public string 日志信息 { get; set; } } }