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.
175 lines
5.0 KiB
C#
175 lines
5.0 KiB
C#
using System;
|
|
using System.Data;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.Account.Models.ChfeeDetail
|
|
{
|
|
|
|
[JsonObject]
|
|
public class ChFeeDetail : ModelObjectBillBody
|
|
{
|
|
#region private Fields
|
|
public string dgid { get; set; }//ch_fee_do.gid
|
|
private string _BSNO = "*";//业务编号
|
|
private string _CH_ID = String.Empty;
|
|
private string _FEEID ="";
|
|
private string _FEEDOID = "";
|
|
private string _MBLNO = "";
|
|
private string _HBLNO = "";
|
|
private int _feeType = 0;
|
|
private string _feeType_Ref = string.Empty;
|
|
private string _feeName = String.Empty;
|
|
private string _customerName = String.Empty;
|
|
private string _feeobjname = String.Empty;
|
|
private decimal _amount = 0;
|
|
private decimal _balamount = 0;
|
|
private decimal _stlamount = 0;
|
|
private string _currency = "RMB";
|
|
private decimal _exChangerate = 1;
|
|
private decimal _doamount = 0;
|
|
private decimal _AccTaxRate = 0;
|
|
private decimal _Invoice = 0;
|
|
private string _InvNo = "";
|
|
private string _BILLNO = "";
|
|
private string _INPUTMODE = "";
|
|
private string _UNIT = "";
|
|
private decimal _UNITPRICE = 0;
|
|
private decimal _QUANTITY = 0;
|
|
private string _origcurrency = "RMB";
|
|
private decimal _ORIGAMOUNT = 0;
|
|
private decimal _ORIGEXCHANGERATE = 1;
|
|
private string _SALECORP = "";
|
|
|
|
private string _Remark = "";
|
|
|
|
#endregion
|
|
|
|
#region Public Properties
|
|
|
|
public string BSNO { get { return _BSNO; } set { _BSNO = value; } }
|
|
public string CH_ID { get { return _CH_ID; } set { _CH_ID = value; } }
|
|
public string FEEID { get { return _FEEID; } set { _FEEID = value; } }
|
|
public string FEEDOID { get { return _FEEDOID; } set { _FEEDOID = value; } }
|
|
public string MBLNO { get { return _MBLNO; } set { _MBLNO = value; } }
|
|
public string HBLNO { get { return _HBLNO; } set { _HBLNO = value; } }
|
|
public string BILLNO { get { return _BILLNO; } set { _BILLNO = value; } }
|
|
public int FeeType { get { return _feeType; } set { _feeType = value; } }
|
|
public string INPUTMODE { get { return _INPUTMODE; } set { _INPUTMODE = value; } }
|
|
public string SALECORP { get { return _SALECORP; } set { _SALECORP = value; } }
|
|
public string UNIT { get { return _UNIT; } set { _UNIT = value; } }
|
|
public string INPUTBY { get; set; }
|
|
|
|
|
|
public string FeeType_Ref
|
|
{
|
|
get { return _feeType_Ref; }
|
|
set { _feeType_Ref = value; }
|
|
}
|
|
public string FeeName
|
|
{
|
|
get { return _feeName; }
|
|
set { _feeName = value; }
|
|
}
|
|
public string CustomerName
|
|
{
|
|
get { return _customerName; }
|
|
set { _customerName = value; }
|
|
}
|
|
public string FeeObjName
|
|
{
|
|
get { return _feeobjname; }
|
|
set { _feeobjname = value; }
|
|
}
|
|
public decimal Amount
|
|
{
|
|
get { return _amount; }
|
|
set { _amount = value; }
|
|
}
|
|
public decimal BalAmount
|
|
{
|
|
get { return _balamount; }
|
|
set { _balamount = value; }
|
|
}
|
|
public decimal StlAmount
|
|
{
|
|
get { return _stlamount; }
|
|
set { _stlamount = value; }
|
|
}
|
|
public string Currency
|
|
{
|
|
get { return _currency; }
|
|
set { _currency = value; }
|
|
}
|
|
public decimal ExChangerate
|
|
{
|
|
get { return _exChangerate; }
|
|
set { _exChangerate = value; }
|
|
}
|
|
public decimal DoAmount
|
|
{
|
|
get { return _doamount; }
|
|
set { _doamount = value; }
|
|
}
|
|
|
|
public decimal AccTaxRate
|
|
{
|
|
get {return _AccTaxRate; }
|
|
set { _AccTaxRate = value; }
|
|
}
|
|
|
|
public decimal Invoice
|
|
{
|
|
get { return _Invoice; }
|
|
set { _Invoice = value; }
|
|
}
|
|
|
|
public string InvNo
|
|
{
|
|
get { return _InvNo; }
|
|
set { _InvNo = value; }
|
|
}
|
|
|
|
public string Remark
|
|
{
|
|
get { return _Remark; }
|
|
set { _Remark = value; }
|
|
}
|
|
|
|
public decimal ORIGAMOUNT
|
|
{
|
|
get { return _ORIGAMOUNT; }
|
|
set { _ORIGAMOUNT = value; }
|
|
}
|
|
public string ORIGCURRENCY
|
|
{
|
|
get { return _origcurrency; }
|
|
set { _origcurrency = value; }
|
|
}
|
|
|
|
public decimal ORIGEXCHANGERATE
|
|
{
|
|
get { return _ORIGEXCHANGERATE; }
|
|
set { _ORIGEXCHANGERATE = value; }
|
|
}
|
|
public decimal UNITPRICE
|
|
{
|
|
get { return _UNITPRICE; }
|
|
set { _UNITPRICE = value; }
|
|
}
|
|
public decimal QUANTITY
|
|
{
|
|
get { return _QUANTITY; }
|
|
set { _QUANTITY = value; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|