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.
156 lines
3.4 KiB
C#
156 lines
3.4 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.MvcShipping.Models.MsOpSubSeaOrder
|
|
{
|
|
[JsonObject]
|
|
public class MsOpSubSeaArrivalFee : ModelObjectBillBody
|
|
{
|
|
#region 读写属性
|
|
private string _fee_id = "";
|
|
/// <summary>
|
|
/// 编号
|
|
/// </summary>
|
|
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
|
|
public string FEEID
|
|
{
|
|
get { return _fee_id; }
|
|
set { _fee_id = value; }
|
|
}
|
|
|
|
private string _ORDNO = "";
|
|
/// <summary>
|
|
/// 业务编号
|
|
/// </summary>
|
|
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
|
|
public string ORDNO
|
|
{
|
|
get { return _ORDNO; }
|
|
set { _ORDNO = value; }
|
|
}
|
|
private string _feeName = "";
|
|
/// <summary>
|
|
/// 表现形式
|
|
/// </summary>
|
|
[ModelDB]
|
|
public string FeeName
|
|
{
|
|
get { return _feeName; }
|
|
set { _feeName = value; }
|
|
}
|
|
|
|
private string _unit = String.Empty;
|
|
[ModelDB]
|
|
public string Unit
|
|
{
|
|
get { return _unit; }
|
|
set { _unit = value; }
|
|
}
|
|
|
|
private decimal _unitPrice =0;
|
|
/// <summary>
|
|
/// 单价
|
|
/// </summary>
|
|
[ModelDB]
|
|
public decimal UnitPrice
|
|
{
|
|
get { return _unitPrice; }
|
|
set { _unitPrice = value; }
|
|
}
|
|
|
|
private decimal _quantity =1;
|
|
/// <summary>
|
|
/// 数量
|
|
/// </summary>
|
|
[ModelDB]
|
|
public decimal Quantity
|
|
{
|
|
get { return _quantity; }
|
|
set { _quantity = value; }
|
|
}
|
|
|
|
private decimal _EXCHANGERATE = 0;
|
|
/// <summary>
|
|
/// 汇率
|
|
/// </summary>
|
|
[ModelDB]
|
|
public decimal EXCHANGERATE
|
|
{
|
|
get { return _EXCHANGERATE; }
|
|
set { _EXCHANGERATE = value; }
|
|
}
|
|
|
|
private decimal _amountjpy =0;
|
|
/// <summary>
|
|
/// 金额
|
|
/// </summary>
|
|
[ModelDB]
|
|
public decimal AmountJpy
|
|
{
|
|
get { return _amountjpy; }
|
|
set { _amountjpy = value; }
|
|
}
|
|
|
|
private decimal _amountusd = 0;
|
|
/// <summary>
|
|
/// 金额
|
|
/// </summary>
|
|
[ModelDB]
|
|
public decimal AmountUsd
|
|
{
|
|
get { return _amountusd; }
|
|
set { _amountusd = value; }
|
|
}
|
|
|
|
private string _currency = "";
|
|
/// <summary>
|
|
/// 币别
|
|
/// </summary>
|
|
|
|
[ModelDB]
|
|
public string Currency
|
|
{
|
|
get { return _currency; }
|
|
set { _currency = value; }
|
|
}
|
|
|
|
|
|
|
|
|
|
private string _remark = "";
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[ModelDB]
|
|
public string REMARK
|
|
{
|
|
get { return _remark; }
|
|
set { _remark = value; }
|
|
}
|
|
|
|
private int _sort =0;
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[ModelDB]
|
|
public int SORT
|
|
{
|
|
get { return _sort; }
|
|
set { _sort = value; }
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
public MsOpSubSeaArrivalFee()
|
|
{
|
|
TableName = "op_sub_seaorder_arrivalfee";
|
|
}
|
|
}
|
|
|
|
#region 参照部分
|
|
|
|
#endregion
|
|
}
|