using System; using System.Data; namespace DSWeb.Models { public class RunFeeSettlementEntity { #region 私有成员 private string _gid;//惟一主键 private int _settle_mode;//结算类别 值1-申请;2-自由;3-发票;4-流程 private string _customer_name;//结算客户 private int _settle_type;//结算方式 值1-现金;2-支票 private decimal _amount_rmb;//人民币金额 private string _account_rmb;//人民币账户 private decimal _rate;//汇率 private decimal _amount_usd;//美元金额 private string _account_usd;//美元账户 private int _bill_type;//单据用途 值1-收款;2-付款 private string _voucher_no;//凭证号 private bool _is_export;//是否已经导出财务凭证 private string _financial_voucher;//财务凭证 private int _bill_status;//单据状态 值1-锁定; 2-未锁定 private string _remark;//备注 private string _cheque_no;//支票号码RMB private string _cheque_no_usd;//支票号码USD private int _type;//所属类型 1-付费申请 2-收费结算 3-付费结算 private string _create_user;//创建人 private DateTime _create_time;//创建时间 private DateTime _payable_time;//要求支付时间 private string _company_id;//所属分公司GID private string _modified_user;//最后一次更新操作人 private DateTime _modified_time;//最后一次更新操作时间 private string _serial_no;//流水号 private string _chequenumremark;//支票号备注 #endregion public RunFeeSettlementEntity() { } #region 读写属性 /// /// 支票号备注 /// public string CHEQUENUMREMARK { get { return _chequenumremark; } set { _chequenumremark = value; } } /// /// 惟一主键 /// public string GID { get { return _gid; } set { _gid = value; } } /// /// 结算类别 值1-申请;2-自由;3-发票;4-流程 /// public int SettleMode { get { return _settle_mode; } set { _settle_mode = value; } } /// /// 结算客户 /// public string CustomerName { get { return _customer_name; } set { _customer_name = value; } } /// /// 结算方式 值1-现金;2-支票 /// public int SettleType { get { return _settle_type; } set { _settle_type = value; } } /// /// 人民币金额 /// public decimal AmountRMB { get { return _amount_rmb; } set { _amount_rmb = value; } } /// /// 人民币账户 /// public string AccountRMB { get { return _account_rmb; } set { _account_rmb = value; } } /// /// 汇率 /// public decimal Rate { get { return _rate; } set { _rate = value; } } /// /// 美元金额 /// public decimal AmountUSD { get { return _amount_usd; } set { _amount_usd = value; } } /// /// 美元账户 /// public string AccountUSD { get { return _account_usd; } set { _account_usd = value; } } /// /// 单据用途 值1-收款;2-付款 /// public int BillType { get { return _bill_type; } set { _bill_type = value; } } /// /// 凭证号 /// public string VoucherNO { get { return _voucher_no; } set { _voucher_no = value; } } /// /// 是否已经导出财务凭证 /// public bool IsExport { get { return _is_export; } set { _is_export = value; } } /// /// 财务凭证 /// public string FinancialVoucher { get { return _financial_voucher; } set { _financial_voucher = value; } } /// /// 单据状态 值1-锁定; 2-未锁定 /// public int BillStatus { get { return _bill_status; } set { _bill_status = value; } } /// /// 备注 /// public string Remark { get { return _remark; } set { _remark = value; } } /// /// 支票号码RMB /// public string ChequeNo { get { return _cheque_no; } set { _cheque_no = value; } } /// /// 支票号码USD /// public string ChequeNoUsd { get { return _cheque_no_usd; } set { _cheque_no_usd = value; } } /// /// 所属类型 1-付费申请 2-收费结算 3-付费结算 /// public int Type { get { return _type; } set { _type = value; } } /// /// 创建人 /// public string CreateUser { get { return _create_user; } set { _create_user = value; } } /// /// 创建时间 /// public DateTime CreateTime { get { return _create_time; } set { _create_time = value; } } /// /// 要求支付时间 /// public DateTime PayableTime { get { return _payable_time; } set { _payable_time = value; } } /// /// 所属分公司GID /// public string CompanyID { get { return _company_id; } set { _company_id = value; } } /// /// 最后一次更新操作人 /// public string ModifiedUser { get { return _modified_user; } set { _modified_user = value; } } /// /// 最后一次更新操作时间 /// public DateTime ModifiedTime { get { return _modified_time; } set { _modified_time = value; } } /// /// 流水号 /// public string SerialNO { get { return _serial_no; } set { _serial_no = value; } } #endregion } }