using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Pur.Entity.balanceEntity { [Serializable] public class PurBalanceBillMEntity { private string balanceId; /// /// 结算单号 /// public string BalanceId { set { balanceId = value; } get { return balanceId; } } private string status; /// /// 状态 /// public string Status { set { status = value; } get { return status; } } private string suppCode; /// /// 供应商代码 /// public string SuppCode { set { suppCode = value; } get { return suppCode; } } private string suppName; /// /// 供应商名称 /// public string SuppName { set { suppName = value; } get { return suppName; } } private string opOrgId; /// /// 操作者机构ID /// public string OpOrgId { set { opOrgId = value; } get { return opOrgId; } } private string opOrgName; /// /// 操作者机构名称 /// public string OpOrgName { set { opOrgName = value; } get { return opOrgName; } } private DateTime? settleDate; /// /// 结算日期 /// public DateTime? SettleDate { set { settleDate = value; } get { return settleDate; } } private Double? totalWithoutAmtTax; /// /// 不含税总金额 /// public Double? TotalWithoutAmtTax { set { totalWithoutAmtTax = value; } get { return totalWithoutAmtTax; } } private Double? totalWithAmtTax; /// /// 含税总金额 /// public Double? TotalWithAmtTax { set { totalWithAmtTax = value; } get { return totalWithAmtTax; } } private Double? taxAmt; /// /// 合同税额 /// public Double? TaxAmt { set { taxAmt = value; } get { return taxAmt; } } private string balanceType; /// /// 结算类别 /// public string BalanceType { set { balanceType = value; } get { return balanceType; } } private string balanceDesc; /// /// 结算说明 /// public string BalanceDesc { set { balanceDesc = value; } get { return balanceDesc; } } private string remark; /// /// 备注 /// public string Remark { set { remark = value; } get { return remark; } } private string reviewState; /// /// 审批状态 /// public string ReviewState { set { reviewState = value; } get { return reviewState; } } private string validflag; /// /// 数据状态(有效、无效) /// public string Validflag { set { validflag = value; } get { return validflag; } } private string createName; /// /// 创建人 /// public string CreateName { set { createName = value; } get { return createName; } } private DateTime? createTime; /// /// 创建时间 /// public DateTime? CreateTime { set { createTime = value; } get { return createTime; } } private string createUserid; /// /// 创建人ID /// public string CreateUserid { set { createUserid = value; } get { return createUserid; } } private string updateName; /// /// 修改人 /// public string UpdateName { set { updateName = value; } get { return updateName; } } private DateTime? updateTime; /// /// 修改时间 /// public DateTime? UpdateTime { set { updateTime = value; } get { return updateTime; } } private string updateUserid; /// /// 修改人ID /// public string UpdateUserid { set { updateUserid = value; } get { return updateUserid; } } private string deleteName; /// /// 废除人 /// public string DeleteName { set { deleteName = value; } get { return deleteName; } } private DateTime? deleteTime; /// /// 废除时间 /// public DateTime? DeleteTime { set { deleteTime = value; } get { return deleteTime; } } private string deleteUserid; /// /// 废除人ID /// public string DeleteUserid { set { deleteUserid = value; } get { return deleteUserid; } } } }