using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace Model
|
{
|
public class ClsPay_WayBillPaymentBillMain : DBUtility.ClsXt_BaseBillMain
|
{
|
public DateTime HAccDate;// datetime //收款日期
|
public Int64 HCarrierID;// int //供应商(gy_supplier)
|
public Int64 HCurID;// int //币别
|
public Single HExRate;// money //汇率(选币别带出)
|
public Int64 HDeptID;// int //部门
|
public Int64 HEmpID;// int //经手人
|
public Int64 HProjectMoneyID;// int //费用项目
|
public string HType;// varchar(20) --发票类型
|
public double HMoney;// dec(18,8) //单据金额
|
public double HTaxRate;// dec(18,8) //税率
|
public double HSumMoney;// dec(18,8) //总金额
|
public string HExplanation;// varchar(200) --摘要
|
public string HInnerBillNo;// varchar(100) --内部单据号
|
public Int64 HOrgID; //组织
|
}
|
}
|