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 读写属性 /// /// 费用主键GID /// public string fee1 { get { return _gid; } set { _gid = value; } } /// /// 费用状态 /// public string fee2 { get { return _status; } set { _status = value; } } /// /// 费用名称 /// public string fee3 { get { return _fee_name; } set { _fee_name = value; } } /// /// 结算单位 /// public string fee4 { get { return _customer_name; } set { _customer_name = value; } } /// /// 计费标准 /// public string fee5 { get { return _unit; } set { _unit = value; } } /// /// 计费单价 /// public decimal fee6 { get { return _unit_price; } set { _unit_price = value; } } /// /// 数量 /// public decimal fee7 { get { return _quantity; } set { _quantity = value; } } /// /// 佣金比例 /// public decimal fee8 { get { return _commission_rate; } set { _commission_rate = value; } } /// /// 金额 /// public decimal fee9 { get { return _amount; } set { _amount = value; } } /// /// 币别 /// public string fee10 { get { return _currency; } set { _currency = value; } } /// /// 汇率 /// public decimal fee11 { get { return _exchange_rate; } set { _exchange_rate = value; } } /// /// FRT运费支付方式 /// public string fee12 { get { return _frt; } set { _frt = value; } } /// /// 费用备注 /// public string fee13 { get { return _remark; } set { _remark = value; } } /// /// 是否垫付 /// public bool fee14 { get { return _is_advance_pay; } set { _is_advance_pay = value; } } /// /// 委托编号 /// public string fee15 { get { return _bsno; } set { _bsno = value; } } #endregion } }