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_sign_detail")] public class t_op_seae_sign_detail { [Key] public long 序号 { 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 bool? 是否签单 { get; set; } public string 二次改单 { get; set; } public DateTime? 提单签入日期 { get; set; } } }