using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
namespace DSWeb.Areas.MvcShipping.DB
{
[Table("v_op_bill")]
public class OpSeae
{
[Key]
public string BSNO { get; set; }
///
/// 船名
///
public string VESSEL { get; set; }
///
/// 航次
///
public string VOYNO { get; set; }
///
/// 提单号
///
public string MBLNO { get; set; }
///
/// 委托单位
///
public string CUSTOMERNAME { get; set; }
public string CARRIER { get; set; }
public string FORWARDER { get; set; }
}
}