OutExpenseAccountBo.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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 Integer targetType;
  15. private String contractNo;
  16. private String buyerName;
  17. private String depName;
  18. private String financeName;
  19. public Integer getTargetType() {
  20. return targetType;
  21. }
  22. public void setTargetType(Integer targetType) {
  23. this.targetType = targetType;
  24. }
  25. public String getContractNo() {
  26. return contractNo;
  27. }
  28. public void setContractNo(String contractNo) {
  29. this.contractNo = contractNo;
  30. }
  31. public String getBuyerName() {
  32. return buyerName;
  33. }
  34. public void setBuyerName(String buyerName) {
  35. this.buyerName = buyerName;
  36. }
  37. public String getDepName() {
  38. return depName;
  39. }
  40. public void setDepName(String depName) {
  41. this.depName = depName;
  42. }
  43. public String getFinanceName() {
  44. return financeName;
  45. }
  46. public void setFinanceName(String financeName) {
  47. this.financeName = financeName;
  48. }
  49. public String getAname() {
  50. return aname;
  51. }
  52. public void setAname(String aname) {
  53. this.aname = aname;
  54. }
  55. public String getAppDepName() {
  56. return appDepName;
  57. }
  58. public void setAppDepName(String appDepName) {
  59. this.appDepName = appDepName;
  60. }
  61. public String getPayDepName() {
  62. return payDepName;
  63. }
  64. public void setPayDepName(String payDepName) {
  65. this.payDepName = payDepName;
  66. }
  67. public String getExamineName() {
  68. return examineName;
  69. }
  70. public void setExamineName(String examineName) {
  71. this.examineName = examineName;
  72. }
  73. public Integer getStatus() {
  74. return status;
  75. }
  76. public void setStatus(Integer status) {
  77. this.status = status;
  78. }
  79. public Integer getId() {
  80. return id;
  81. }
  82. public void setId(Integer id) {
  83. this.id = id;
  84. }
  85. public BigDecimal getTotalAmount() {
  86. return totalAmount;
  87. }
  88. public void setTotalAmount(BigDecimal totalAmount) {
  89. this.totalAmount = totalAmount;
  90. }
  91. public Integer getType() {
  92. return type;
  93. }
  94. public void setType(Integer type) {
  95. this.type = type;
  96. }
  97. public Integer getProcessStatus() {
  98. return processStatus;
  99. }
  100. public void setProcessStatus(Integer processStatus) {
  101. this.processStatus = processStatus;
  102. }
  103. public String getCreateTimeStr() {
  104. return createTimeStr;
  105. }
  106. public void setCreateTimeStr(String createTimeStr) {
  107. this.createTimeStr = createTimeStr;
  108. }
  109. }