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.
78 lines
2.0 KiB
C#
78 lines
2.0 KiB
C#
using System;
|
|
using System.Data;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
public class TopSeaeMidwayEntity
|
|
{
|
|
#region 私有成员
|
|
private int _MID;//编号
|
|
private string _BSNO;//业务编号
|
|
private string _MIDNUM;//运输中转数
|
|
private string _VESSEL;//船名
|
|
private string _VOYNO;//航次
|
|
private string _TRANTYPE;//运输方式
|
|
private string _PORTLOAD;//起运港
|
|
private DateTime _ETD;//开船日期
|
|
private DateTime _ETA;//到港日期
|
|
private string _PORTDISCHAGE;//卸货港
|
|
#endregion
|
|
|
|
public TopSeaeMidwayEntity()
|
|
{
|
|
}
|
|
|
|
#region 读写属性
|
|
/// <summary>
|
|
/// 编号
|
|
/// </summary>
|
|
public int MID {get{return _MID ;}set { _MID = value;}}
|
|
|
|
/// <summary>
|
|
/// 业务编号
|
|
/// </summary>
|
|
public string BSNO {get{return _BSNO ;}set { _BSNO = value;}}
|
|
|
|
/// <summary>
|
|
/// 运输中转数
|
|
/// </summary>
|
|
public string MIDNUM {get{return _MIDNUM ;}set { _MIDNUM = value;}}
|
|
|
|
/// <summary>
|
|
/// 船名
|
|
/// </summary>
|
|
public string VESSEL {get{return _VESSEL ;}set { _VESSEL = value;}}
|
|
|
|
/// <summary>
|
|
/// 航次
|
|
/// </summary>
|
|
public string VOYNO {get{return _VOYNO ;}set { _VOYNO = value;}}
|
|
|
|
/// <summary>
|
|
/// 运输方式
|
|
/// </summary>
|
|
public string TRANTYPE {get{return _TRANTYPE ;}set { _TRANTYPE = value;}}
|
|
|
|
/// <summary>
|
|
/// 起运港
|
|
/// </summary>
|
|
public string PORTLOAD {get{return _PORTLOAD ;}set { _PORTLOAD = value;}}
|
|
|
|
/// <summary>
|
|
/// 开船日期
|
|
/// </summary>
|
|
public DateTime ETD {get{return _ETD ;}set { _ETD = value;}}
|
|
|
|
/// <summary>
|
|
/// 到港日期
|
|
/// </summary>
|
|
public DateTime ETA {get{return _ETA ;}set { _ETA = value;}}
|
|
|
|
/// <summary>
|
|
/// 卸货港
|
|
/// </summary>
|
|
public string PORTDISCHAGE {get{return _PORTDISCHAGE ;}set { _PORTDISCHAGE = value;}}
|
|
#endregion
|
|
}
|
|
}
|