using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DSWeb.Common.DB { [Table("sys_op_log")] public class SysOpLog { /// /// 马士基订舱 /// public const string CateMaerskBook = "MaerskBook"; [Key] public string GID { get; set; } public string CateId { get; set; } public string OpName { get; set; } public string RelativeId { get; set; } public string OpUser { get; set; } public DateTime OpTime { get; set; } public string OpStatus { get; set; } public string ExtData { get; set; } public string Remark { get; set; } } }