You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
878 B
C#
39 lines
878 B
C#
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; }
|
|
|
|
/// <summary>
|
|
/// 船名
|
|
/// </summary>
|
|
public string VESSEL { get; set; }
|
|
|
|
/// <summary>
|
|
/// 航次
|
|
/// </summary>
|
|
public string VOYNO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 提单号
|
|
/// </summary>
|
|
public string MBLNO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 委托单位
|
|
/// </summary>
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
public string CARRIER { get; set; }
|
|
public string FORWARDER { get; set; }
|
|
}
|
|
} |