using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace BookingJieFeng.DB.Model { [Table("OP_LOG")] public class OP_LOG { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int LogId { get; set; } public DateTime OpTime { get; set; } public string OpUserId { get; set; } public string OpUserName { get; set; } public string OpCompanyId { get; set; } public string OpCompanyName { get; set; } public string Module { get; set; } public string Type { get; set; } public string BillNO { get; set; } public string MBLNO { get; set; } public string JsonValue { get; set; } } }