using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
namespace DSWeb.Areas.Dispatch.DB
{
[Table("op_seae")]
public class OpSeaeInfo
{
[Key]
public string BSNO { get; set; }
///
/// 船名
///
public string VESSEL { get; set; }
///
/// 航次
///
public string VOYNO { get; set; }
///
/// 箱型箱量
///
public string CNTRTOTAL { get; set; }
///
/// 吨位
///
public decimal KGS { get; set; }
///
/// 提单号
///
public string MBLNO { get; set; }
///
/// 场站
///
public string YARD { get; set; }
///
/// 截港时间
///
public DateTime? CLOSINGDATE { get; set; }
public string CUSTOMERNAME { get; set; }
}
}