using System; using System.Data; namespace DSWeb.Models { public class ChFeeRecvApplicationEntity { private string _gid = ""; /// /// 惟一编号 /// public string GID { get { return _gid; } set { _gid = value; } } private string _billno = ""; /// /// 申请编号 /// public string BILLNO { get { return _billno; } set { _billno = value; } } private int _billstatus = 1; /// /// 单据状态:1.未提交,2.已提交,3.审批中(财务?),0.已审批,4.已结算,5.部分结算,6.审核驳回 /// public int BILLSTATUS { get { return _billstatus; } set { _billstatus = value; } } private string _customername = ""; /// /// 结算客户 /// public string CUSTOMERNAME { get { return _customername; } set { _customername = value; } } private string _invoicetitle = ""; /// /// 发票抬头 /// public string INVOICETITLE { get { return _invoicetitle; } set { _invoicetitle = value; } } private int _settletype = 0; /// /// 结算方式:1.现金,2.支票,3.电汇,4.转账,5.承兑汇票(hgty) /// public int SETTLETYPE { get { return _settletype; } set { _settletype = value; } } private DateTime _recvtime; /// /// 要求收取日期 /// public DateTime RECVTIME { get { return _recvtime; } set { _recvtime = value; } } private decimal _amountrmb = 0; /// /// 人民币金额 /// public decimal AMOUNTRMB { get { return _amountrmb; } set { _amountrmb = value; } } private decimal _amountusd = 0; /// /// 美元金额 /// public decimal AMOUNTUSD { get { return _amountusd; } set { _amountusd = value; } } private decimal _rate = 0; /// /// 汇率 /// public decimal RATE { get { return _rate; } set { _rate = value; } } private decimal _settlermb = 0; /// /// 人民币结算金额 /// public decimal SETTLERMB { get { return _settlermb; } set { _settlermb = value; } } private decimal _settleusd = 0; /// /// 美元结算金额 /// public decimal SETTLEUSD { get { return _settleusd; } set { _settleusd = value; } } private decimal _settlerate = 0; /// /// 结算汇率 /// public decimal SETTLERATE { get { return _settlerate; } set { _settlerate = value; } } private string _applicant = ""; /// /// 申请人 /// public string APPLICANT { get { return _applicant; } set { _applicant = value; } } private DateTime _applytime; /// /// 申请时间 /// public DateTime APPLYTIME { get { return _applytime; } set { _applytime = value; } } private DateTime _entertime = DateTime.Now; /// /// 提交时间 /// public DateTime ENTERTIME { get { return _entertime; } set { _entertime = value; } } private string _settleuser = ""; /// /// 结算人 /// public string SETTLEUSER { get { return _settleuser; } set { _settleuser = value; } } private DateTime _settletime; /// /// 结算时间 /// public DateTime SETTLETIME { get { return _settletime; } set { _settletime = value; } } private string _audituser = ""; /// /// 审核人 /// public string AUDITUSER { get { return _audituser; } set { _audituser = value; } } private DateTime _audittime; /// /// 审核时间 /// public DateTime AUDITTIME { get { return _audittime; } set { _audittime = value; } } private string _remark = ""; /// /// 备注 /// public string REMARK { get { return _remark; } set { _remark = value; } } private bool _isdelete = false; /// /// 是否删除 /// public bool ISDELETE { get { return _isdelete; } set { _isdelete = value; } } private string _deleteuser = ""; /// /// 删除操作人 /// public string DELETEUSER { get { return _deleteuser; } set { _deleteuser = value; } } private DateTime _deletetime; /// /// 删除操作时间 /// public DateTime DELETETIME { get { return _deletetime; } set { _deletetime = value; } } private string _invoicenumremark = ""; /// /// 发票号备注 /// public string INVOICENUMREMARK { get { return _invoicenumremark; } set { _invoicenumremark = value; } } private string _companyid = ""; /// /// 分公司GID /// public string COMPANYID { get { return _companyid; } set { _companyid = value; } } private string _currency = ""; /// /// 币别 /// public string CURRENCY { get { return _currency; } set { _currency = value; } } // } }