OutExpenseAccountBo.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. package com.goafanti.expenseAccount.bo;
  2. import java.math.BigDecimal;
  3. public class OutExpenseAccountBo {
  4. private Integer id;
  5. private BigDecimal totalAmount;
  6. private Integer type;
  7. private Integer processStatus;
  8. private String examineName;
  9. private String createTimeStr;
  10. private String aname;
  11. private String appDepName;
  12. private String payDepName;
  13. private Integer status;
  14. private String contractNo;
  15. private String buyerName;
  16. private String depName;
  17. private String financeName;
  18. public String getContractNo() {
  19. return contractNo;
  20. }
  21. public void setContractNo(String contractNo) {
  22. this.contractNo = contractNo;
  23. }
  24. public String getBuyerName() {
  25. return buyerName;
  26. }
  27. public void setBuyerName(String buyerName) {
  28. this.buyerName = buyerName;
  29. }
  30. public String getDepName() {
  31. return depName;
  32. }
  33. public void setDepName(String depName) {
  34. this.depName = depName;
  35. }
  36. public String getFinanceName() {
  37. return financeName;
  38. }
  39. public void setFinanceName(String financeName) {
  40. this.financeName = financeName;
  41. }
  42. public String getAname() {
  43. return aname;
  44. }
  45. public void setAname(String aname) {
  46. this.aname = aname;
  47. }
  48. public String getAppDepName() {
  49. return appDepName;
  50. }
  51. public void setAppDepName(String appDepName) {
  52. this.appDepName = appDepName;
  53. }
  54. public String getPayDepName() {
  55. return payDepName;
  56. }
  57. public void setPayDepName(String payDepName) {
  58. this.payDepName = payDepName;
  59. }
  60. public String getExamineName() {
  61. return examineName;
  62. }
  63. public void setExamineName(String examineName) {
  64. this.examineName = examineName;
  65. }
  66. public Integer getStatus() {
  67. return status;
  68. }
  69. public void setStatus(Integer status) {
  70. this.status = status;
  71. }
  72. public Integer getId() {
  73. return id;
  74. }
  75. public void setId(Integer id) {
  76. this.id = id;
  77. }
  78. public BigDecimal getTotalAmount() {
  79. return totalAmount;
  80. }
  81. public void setTotalAmount(BigDecimal totalAmount) {
  82. this.totalAmount = totalAmount;
  83. }
  84. public Integer getType() {
  85. return type;
  86. }
  87. public void setType(Integer type) {
  88. this.type = type;
  89. }
  90. public Integer getProcessStatus() {
  91. return processStatus;
  92. }
  93. public void setProcessStatus(Integer processStatus) {
  94. this.processStatus = processStatus;
  95. }
  96. public String getCreateTimeStr() {
  97. return createTimeStr;
  98. }
  99. public void setCreateTimeStr(String createTimeStr) {
  100. this.createTimeStr = createTimeStr;
  101. }
  102. }