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.
162 lines
3.5 KiB
C#
162 lines
3.5 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.MvcShipping.Models.MsOpSubSeaOrder
|
|
{
|
|
[JsonObject]
|
|
public class MsOpSubSeaOrderFee : 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 _BSNO = "";
|
|
/// <summary>
|
|
/// 业务编号
|
|
/// </summary>
|
|
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
|
|
public string BSNO
|
|
{
|
|
get { return _BSNO; }
|
|
set { _BSNO = 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 _amount =0;
|
|
/// <summary>
|
|
/// 金额
|
|
/// </summary>
|
|
[ModelDB]
|
|
public decimal Amount
|
|
{
|
|
get { return _amount; }
|
|
set { _amount = value; }
|
|
}
|
|
private string _currency = "";
|
|
/// <summary>
|
|
/// 币别
|
|
/// </summary>
|
|
|
|
[ModelDB]
|
|
public string Currency
|
|
{
|
|
get { return _currency; }
|
|
set { _currency = value; }
|
|
}
|
|
|
|
private decimal _exChangerate = 0;
|
|
/// <summary>
|
|
/// 汇率
|
|
/// </summary>
|
|
[ModelDB]
|
|
public decimal ExChangerate
|
|
{
|
|
get { return _exChangerate; }
|
|
set { _exChangerate = value; }
|
|
}
|
|
|
|
private string _feeFrt = "";
|
|
/// <summary>
|
|
/// 到付预付
|
|
/// </summary>
|
|
[ModelDB]
|
|
public string FeeFrt
|
|
{
|
|
get { return _feeFrt; }
|
|
set { _feeFrt = 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; }
|
|
}
|
|
|
|
private int _agentfee = 0;
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[ModelDB]
|
|
public int AGENTFEE
|
|
{
|
|
get { return _agentfee; }
|
|
set { _agentfee = value; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
public MsOpSubSeaOrderFee()
|
|
{
|
|
TableName = "op_seaorder_fee";
|
|
}
|
|
}
|
|
|
|
#region 参照部分
|
|
|
|
#endregion
|
|
}
|