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("t_op_seae")] public class t_op_seae { [Key] public string 编号 { get; set; } public string 主编号 { get; set; } public string 业务编号 { get; set; } public string 主提单号 { get; set; } public string 分提单号 { get; set; } public string 委托编号 { get; set; } public string 场站 { get; set; } public string 操作员 { get; set; } public string 船名 { get; set; } public string 航次 { get; set; } public string 发票号 { get; set; } public string 报关单号 { get; set; } public string 集装箱 { get; set; } public DateTime? 开船日期 { get; set; } public DateTime? 预抵日期 { get; set; } public string 委托单位 { get; set; } public DateTime? 录入日期 { get; set; } public string 备注 { get; set; } } }