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.
161 lines
3.7 KiB
C#
161 lines
3.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using Newtonsoft.Json;
|
|
using HcUtility.Core;
|
|
|
|
namespace DSWeb.Areas.MvcShipping.Models.MsOpCtnRentBuy
|
|
{
|
|
[JsonObject]
|
|
public class op_ctn_outinmxModel : ModelObjectBillHead
|
|
{
|
|
#region Model
|
|
private string _gid;
|
|
private string _linkgid;
|
|
private string _cnttype;
|
|
private string _cntrno;
|
|
private string _unitprice;
|
|
private string _currency;
|
|
private string _status;
|
|
private string _cnsource;
|
|
private string _sport;
|
|
private string _sCustName;
|
|
private string _remarks;
|
|
private string _cntage;
|
|
private string _eport;
|
|
private string _eCustName;
|
|
private string _oneway;
|
|
private string _freeuse;
|
|
|
|
/// <summary>
|
|
///
|
|
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
|
|
public string GID
|
|
{
|
|
set { _gid = value; }
|
|
get { return _gid; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
[ModelDB]
|
|
public string LINKGID
|
|
{
|
|
set { _linkgid = value; }
|
|
get { return _linkgid; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
[ModelDB]
|
|
public string cntype
|
|
{
|
|
set { _cnttype = value; }
|
|
get { return _cnttype; }
|
|
}
|
|
[ModelDB]
|
|
public string code_currency { get; set; }
|
|
[ModelDB]
|
|
public string CNTRNO
|
|
{
|
|
set { _cntrno = value; }
|
|
get { return _cntrno; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
[ModelDB]
|
|
public string UnitPrice
|
|
{
|
|
set { _unitprice = value; }
|
|
get { return _unitprice; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
[ModelDB]
|
|
public string Currency
|
|
{
|
|
set { _currency = value; }
|
|
get { return _currency; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
[ModelDB]
|
|
public string STATUS
|
|
{
|
|
set { _status = value; }
|
|
get { return _status; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
[ModelDB]
|
|
public string cnsource
|
|
{
|
|
set { _cnsource = value; }
|
|
get { return _cnsource; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
[ModelDB]
|
|
public string SPORT
|
|
{
|
|
set { _sport = value; }
|
|
get { return _sport; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
[ModelDB]
|
|
public string sCustName
|
|
{
|
|
set { _sCustName = value; }
|
|
get { return _sCustName; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
[ModelDB]
|
|
public string REMARKS
|
|
{
|
|
set { _remarks = value; }
|
|
get { return _remarks; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
[ModelDB]
|
|
public string cntage
|
|
{
|
|
set { _cntage = value; }
|
|
get { return _cntage; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
[ModelDB]
|
|
public string EPORT
|
|
{
|
|
set { _eport = value; }
|
|
get { return _eport; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
[ModelDB]
|
|
public string eCustName
|
|
{
|
|
set { _eCustName = value; }
|
|
get { return _eCustName; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
[ModelDB]
|
|
public string ONEWAY
|
|
{
|
|
set { _oneway = value; }
|
|
get { return _oneway; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
[ModelDB]
|
|
public string FREEUSE
|
|
{
|
|
set { _freeuse = value; }
|
|
get { return _freeuse; }
|
|
}
|
|
#endregion Model
|
|
}
|
|
} |