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.

59 lines
1.2 KiB
C#

10 months 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_seai")]
public class OpSeaiInfo
{
[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 string MBLNO { get; set; }
/// <summary>
/// 客服
/// </summary>
public string CUSTSERVICE { get; set; }
public string OP { get; set; }
public string STORAGENAME { get; set; }
public string GOODSNAME { get; set; }
public DateTime? BSDATE { get; set; }
public DateTime? ETD { get; set; }
public DateTime? CUSTOMDATE { get; set; }
public DateTime? TIHUOTIME { get; set; }
public DateTime? WMSDATE { get; set; }
}
}