using System; using HcUtility.Core; using Newtonsoft.Json; namespace DSWeb.MvcShipping.Models.MsOpCtnStatus { [JsonObject] public class MsCtnStatus : ModelObjectBillHead { #region 读写属性 private int _b_id = 0; /// /// 编号 /// [ModelDB(IsPrimary = true)] public int b_id { get { return _b_id; } set { _b_id = value; } } private string _box_no = ""; /// /// 箱号 /// [ModelDB] public string box_no { get { return _box_no; } set { _box_no = value; } } private string _blno = ""; [ModelDB] public string sdzt { get; set; } /// /// 提单号 /// [ModelDB] public string blno { get { return _blno; } set { _blno = value; } } private string _vessel = ""; /// /// 船名 /// [ModelDB] public string vessel { get { return _vessel; } set { _vessel = value; } } private string _voyage = ""; /// /// 航次 /// [ModelDB] public string voyage { get { return _voyage; } set { _voyage = value; } } private string _etd; /// /// 购买时间 /// [ModelDB] public string etd { get { return _etd; } set { _etd = value; } } private string _reachtime; /// /// 开始时间 /// [ModelDB] public string reachtime { get { return _reachtime; } set { _reachtime = value; } } private string _opertime; /// /// 结束时间 /// [ModelDB] public string opertime { get { return _opertime; } set { _opertime = value; } } /// /// 状态 /// [ModelDB] public string state { get; set; } private string _stateref = ""; public string stateref { get { return _stateref; } set { _stateref = value; } } private string _position=""; /// /// 地点 /// [ModelDB] public string position { get { return _position; } set { _position = value; } } private string _positionname = ""; public string positionname { get { return _positionname; } set { _positionname = value; } } private string _operman = ""; /// /// 地点名称 /// [ModelDB] public string operman { get { return _operman; } set { _operman = value; } } private string _fobport = ""; /// /// 地点名称 /// [ModelDB] public string fobport { get { return _fobport; } set { _fobport = value; } } private string _fobportname = ""; public string fobportname { get { return _fobportname; } set { _fobportname = value; } } private string _remark = ""; /// /// 备注 /// [ModelDB] public string Remarks { get { return _remark; } set { _remark = value; } } private string _ONEWAY = ""; public string ONEWAY { get { return _ONEWAY; } set { _ONEWAY = value; } } private string _cnsource = ""; public string cnsource { get { return _cnsource; } set { _cnsource = value; } } private string _cntrsize = ""; public string cntrsize { get { return _cntrsize; } set { _cntrsize = value; } } [ModelDB] public string jcyy { get; set; } [ModelDB] public string cz { get; set; } [ModelDB] public string cctime { get; set; } [ModelDB] public string jctime { get; set; } #endregion public string TEU { get; set; } public MsCtnStatus() { TableName = "container_business"; } } }