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.8 KiB
C#

10 months ago
using System;
using System.Data;
namespace DSWeb.Models
{
public class JsonFeeEntity
{
#region 私有成员
private string _gid;//费用主键GID
private string _status;//费用状态
private string _fee_name;//费用名称
private string _customer_name;//结算单位
private string _unit;//计费标准
private decimal _unit_price;//计费单价
private decimal _quantity;//数量
private decimal _commission_rate;//佣金比例
private decimal _amount;//金额
private string _currency;//币别
private decimal _exchange_rate;//汇率
private string _frt;//FRT运费支付方式
private string _remark;//费用备注
private bool _is_advance_pay;//是否垫付
private string _bsno;//委托编号
#endregion
public JsonFeeEntity()
{
}
#region 读写属性
/// <summary>
/// 费用主键GID
/// </summary>
public string fee1
{
get { return _gid; }
set { _gid = value; }
}
/// <summary>
/// 费用状态
/// </summary>
public string fee2
{
get { return _status; }
set { _status = value; }
}
/// <summary>
/// 费用名称
/// </summary>
public string fee3
{
get { return _fee_name; }
set { _fee_name = value; }
}
/// <summary>
/// 结算单位
/// </summary>
public string fee4
{
get { return _customer_name; }
set { _customer_name = value; }
}
/// <summary>
/// 计费标准
/// </summary>
public string fee5
{
get { return _unit; }
set { _unit = value; }
}
/// <summary>
/// 计费单价
/// </summary>
public decimal fee6
{
get { return _unit_price; }
set { _unit_price = value; }
}
/// <summary>
/// 数量
/// </summary>
public decimal fee7
{
get { return _quantity; }
set { _quantity = value; }
}
/// <summary>
/// 佣金比例
/// </summary>
public decimal fee8
{
get { return _commission_rate; }
set { _commission_rate = value; }
}
/// <summary>
/// 金额
/// </summary>
public decimal fee9
{
get { return _amount; }
set { _amount = value; }
}
/// <summary>
/// 币别
/// </summary>
public string fee10
{
get { return _currency; }
set { _currency = value; }
}
/// <summary>
/// 汇率
/// </summary>
public decimal fee11
{
get { return _exchange_rate; }
set { _exchange_rate = value; }
}
/// <summary>
/// FRT运费支付方式
/// </summary>
public string fee12
{
get { return _frt; }
set { _frt = value; }
}
/// <summary>
/// 费用备注
/// </summary>
public string fee13
{
get { return _remark; }
set { _remark = value; }
}
/// <summary>
/// 是否垫付
/// </summary>
public bool fee14
{
get { return _is_advance_pay; }
set { _is_advance_pay = value; }
}
/// <summary>
/// 委托编号
/// </summary>
public string fee15
{
get { return _bsno; }
set { _bsno = value; }
}
#endregion
}
}