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.
DS7/DSWeb/Areas/Dispatch/DB/OpSeaeInfo.cs

53 lines
1.1 KiB
C#

2 years ago
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; }
/// <summary>
/// 船名
/// </summary>
public string VESSEL { get; set; }
/// <summary>
/// 航次
/// </summary>
public string VOYNO { get; set; }
/// <summary>
/// 箱型箱量
/// </summary>
public string CNTRTOTAL { get; set; }
/// <summary>
/// 吨位
/// </summary>
public decimal KGS { get; set; }
/// <summary>
/// 提单号
/// </summary>
public string MBLNO { get; set; }
/// <summary>
/// 场站
/// </summary>
public string YARD { get; set; }
/// <summary>
/// 截港时间
/// </summary>
public DateTime? CLOSINGDATE { get; set; }
public string CUSTOMERNAME { get; set; }
}
}