using System; using System.Data; using System.Collections; using System.Collections.Generic; using Newtonsoft.Json; namespace DSWeb.Areas.Account.Models.Chfee_Settlement { [JsonObject] public class ChPaySettlement { #region 私有成员 private string _gid = String.Empty;//主键唯一值 private string _billno = "*";//主键唯一值 private int _billstatus = 1; private string _billstatusref = "未提交"; private string _customername;// private string _payabletime = ""; private string _curr = "RMB"; private decimal _amount = 0; private decimal _doamount = 0; private decimal _stlamount = 0; private decimal _balamount = 0; private decimal _usdamount = 0; private decimal _usddoamount = 0; private decimal _usdstlamount = 0; private decimal _usdbalamount = 0; private decimal _exchangerate = 0; private string _applicant;// private string _applicantname;// private DateTime? _applytime = null; private DateTime? _entertime = null; private string _settleuser;// private DateTime? _settletime = null; private string _remark;// private string _companyid; private string _CUSTACCOUNTGID = ""; private string _CUSTBANKNAME = ""; private string _CUSTACCOUNT = ""; private decimal _auditstlrate = 0; private decimal _auditstlamount = 0; private string _auditstlcurr = ""; private string _SETTLETYPE = ""; private string _SETTLETYPEREF = ""; #endregion #region 读写属性 /// /// 主键唯一值 /// public string GID { get { return _gid; } set { _gid = value; } } public string BILLNO { get { return _billno; } set { _billno = value; } } public int BILLSTATUS { get { return _billstatus; } set { _billstatus = value; } } public string BILLSTATUSREF { get { return _billstatusref; } set { _billstatusref = value; } } public string CUSTOMERNAME { get { return _customername; } set { _customername = value; } } public string CURR { get { return _curr; } set { _curr = value; } } public string PAYABLETIME { get { return _payabletime; } set { _payabletime = value; } } public decimal AMOUNT { get { return _amount; } set { _amount = value; } } public decimal DOAMOUNT { get { return _doamount; } set { _doamount = value; } } public decimal STLAMOUNT { get { return _stlamount; } set { _stlamount = value; } } public decimal BALAMOUNT { get { return _balamount; } set { _balamount = value; } } public decimal USDAMOUNT { get { return _usdamount; } set { _usdamount = value; } } public decimal USDDOAMOUNT { get { return _usddoamount; } set { _usddoamount = value; } } public decimal USDSTLAMOUNT { get { return _usdstlamount; } set { _usdstlamount = value; } } public decimal USDBALAMOUNT { get { return _usdbalamount; } set { _usdbalamount = value; } } public decimal OTAMOUNT { get; set; } public decimal OTDOAMOUNT { get; set; } public decimal OTSTLAMOUNT { get; set; } public decimal OTBALAMOUNT { get; set; } public decimal EXCHANGERATE { get { return _exchangerate; } set { _exchangerate = value; } } public string APPLICANT { get { return _applicant; } set { _applicant = value; } } public string APPLICANTNAME { get { return _applicantname; } set { _applicantname = value; } } public DateTime? APPLYTIME { get { return _applytime; } set { _applytime = value; } } public DateTime? ENTERTIME { get { return _entertime; } set { _entertime = value; } } public string SETTLEUSER { get { return _settleuser; } set { _settleuser = value; } } public DateTime? SETTLETIME { get { return _settletime; } set { _settletime = value; } } public string COMPANYID { get { return _companyid; } set { _companyid = value; } } public string REMARK { get { return _remark; } set { _remark = value; } } public string CUSTACCOUNTGID { get { return _CUSTACCOUNTGID; } set { _CUSTACCOUNTGID = value; } } public string CUSTBANKNAME { get { return _CUSTBANKNAME; } set { _CUSTBANKNAME = value; } } public string CUSTACCOUNT { get { return _CUSTACCOUNT; } set { _CUSTACCOUNT = value; } } public decimal AUDITSTLAMOUNT { get { return _auditstlamount; } set { _auditstlamount = value; } } public decimal AUDITSTLRATE { get { return _auditstlrate; } set { _auditstlrate = value; } } public string AUDITSTLCURR { get { return _auditstlcurr; } set { _auditstlcurr = value; } } public string SETTLETYPE { get { return _SETTLETYPE; } set { _SETTLETYPE = value; } } public string SETTLETYPEREF { get { return _SETTLETYPEREF; } set { _SETTLETYPEREF = value; } } public string SALECORPID { set; get; } public string SALECORP { set; get; } public string INVNO { get; set; } public string AUDITTIME { get; set; } public string AUDITUSERREF { get; set; } public string ISREVINV { get; set; } #endregion } }