OutExpenseAccountBo.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.goafanti.expenseAccount.bo;
  2. import java.math.BigDecimal;
  3. public class OutExpenseAccountBo {
  4. private Integer id;private BigDecimal totalAmount;private Integer type;private Integer processStatus;private String createTimeStr;
  5. private Integer status;
  6. public Integer getStatus() {
  7. return status;
  8. }
  9. public void setStatus(Integer status) {
  10. this.status = status;
  11. }
  12. public Integer getId() {
  13. return id;
  14. }
  15. public void setId(Integer id) {
  16. this.id = id;
  17. }
  18. public BigDecimal getTotalAmount() {
  19. return totalAmount;
  20. }
  21. public void setTotalAmount(BigDecimal totalAmount) {
  22. this.totalAmount = totalAmount;
  23. }
  24. public Integer getType() {
  25. return type;
  26. }
  27. public void setType(Integer type) {
  28. this.type = type;
  29. }
  30. public Integer getProcessStatus() {
  31. return processStatus;
  32. }
  33. public void setProcessStatus(Integer processStatus) {
  34. this.processStatus = processStatus;
  35. }
  36. public String getCreateTimeStr() {
  37. return createTimeStr;
  38. }
  39. public void setCreateTimeStr(String createTimeStr) {
  40. this.createTimeStr = createTimeStr;
  41. }
  42. }