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 createTimeStr; private Integer status; 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; } }