package com.goafanti.expenseAccount.bo; import java.math.BigDecimal; public class OutExpenseAccountBo { private Integer id; private BigDecimal totalAmount; private Integer type; private Integer processStatus; private String examineName; private String createTimeStr; private String aname; private String appDepName; private String payDepName; private Integer status; private Integer targetType; private String contractNo; private String buyerName; private String depName; private String financeName; public Integer getTargetType() { return targetType; } public void setTargetType(Integer targetType) { this.targetType = targetType; } public String getContractNo() { return contractNo; } public void setContractNo(String contractNo) { this.contractNo = contractNo; } public String getBuyerName() { return buyerName; } public void setBuyerName(String buyerName) { this.buyerName = buyerName; } public String getDepName() { return depName; } public void setDepName(String depName) { this.depName = depName; } public String getFinanceName() { return financeName; } public void setFinanceName(String financeName) { this.financeName = financeName; } public String getAname() { return aname; } public void setAname(String aname) { this.aname = aname; } public String getAppDepName() { return appDepName; } public void setAppDepName(String appDepName) { this.appDepName = appDepName; } public String getPayDepName() { return payDepName; } public void setPayDepName(String payDepName) { this.payDepName = payDepName; } public String getExamineName() { return examineName; } public void setExamineName(String examineName) { this.examineName = examineName; } public Integer getStatus() { return status; } public void setStatus(Integer status) { this.status = status; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public BigDecimal getTotalAmount() { return totalAmount; } public void setTotalAmount(BigDecimal totalAmount) { this.totalAmount = totalAmount; } public Integer getType() { return type; } public void setType(Integer type) { this.type = type; } public Integer getProcessStatus() { return processStatus; } public void setProcessStatus(Integer processStatus) { this.processStatus = processStatus; } public String getCreateTimeStr() { return createTimeStr; } public void setCreateTimeStr(String createTimeStr) { this.createTimeStr = createTimeStr; } }