SonExpenseAccountDetails.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. package com.goafanti.expenseAccount.bo;
  2. import java.math.BigDecimal;
  3. public class SonExpenseAccountDetails {
  4. private Integer id;
  5. private Integer type;
  6. private String typeOther;
  7. private BigDecimal amount;
  8. private BigDecimal realAmount;
  9. private String startDistrict;
  10. private String endDistrict;
  11. private Integer vehicle;
  12. private String vehicleOther;
  13. private String startTime;
  14. private String endTime;
  15. private String agreeTime;
  16. /**
  17. * 付款方式
  18. */
  19. private Integer payType;
  20. /**
  21. * 发票类型 0普票 1专票
  22. */
  23. private Integer invoiceType;
  24. /**
  25. * 发票号
  26. */
  27. private String invoiceNo;
  28. /**
  29. * 付款单位
  30. */
  31. private String payerName;
  32. /**
  33. * 开户行名称
  34. */
  35. private String openBank;
  36. /**
  37. * 银行账户
  38. */
  39. private String bankAccounts;
  40. /**
  41. * 开户行地址
  42. */
  43. private String openBankAddress;
  44. public String getTypeOther() {
  45. return typeOther;
  46. }
  47. public void setTypeOther(String typeOther) {
  48. this.typeOther = typeOther;
  49. }
  50. public String getStartTime() {
  51. return startTime;
  52. }
  53. public void setStartTime(String startTime) {
  54. this.startTime = startTime;
  55. }
  56. public String getEndTime() {
  57. return endTime;
  58. }
  59. public void setEndTime(String endTime) {
  60. this.endTime = endTime;
  61. }
  62. public String getAgreeTime() {
  63. return agreeTime;
  64. }
  65. public void setAgreeTime(String agreeTime) {
  66. this.agreeTime = agreeTime;
  67. }
  68. public Integer getPayType() {
  69. return payType;
  70. }
  71. public void setPayType(Integer payType) {
  72. this.payType = payType;
  73. }
  74. public Integer getInvoiceType() {
  75. return invoiceType;
  76. }
  77. public void setInvoiceType(Integer invoiceType) {
  78. this.invoiceType = invoiceType;
  79. }
  80. public String getInvoiceNo() {
  81. return invoiceNo;
  82. }
  83. public void setInvoiceNo(String invoiceNo) {
  84. this.invoiceNo = invoiceNo;
  85. }
  86. public String getPayerName() {
  87. return payerName;
  88. }
  89. public void setPayerName(String payerName) {
  90. this.payerName = payerName;
  91. }
  92. public String getOpenBank() {
  93. return openBank;
  94. }
  95. public void setOpenBank(String openBank) {
  96. this.openBank = openBank;
  97. }
  98. public String getBankAccounts() {
  99. return bankAccounts;
  100. }
  101. public void setBankAccounts(String bankAccounts) {
  102. this.bankAccounts = bankAccounts;
  103. }
  104. public String getOpenBankAddress() {
  105. return openBankAddress;
  106. }
  107. public void setOpenBankAddress(String openBankAddress) {
  108. this.openBankAddress = openBankAddress;
  109. }
  110. public Integer getVehicle() {
  111. return vehicle;
  112. }
  113. public void setVehicle(Integer vehicle) {
  114. this.vehicle = vehicle;
  115. }
  116. public String getVehicleOther() {
  117. return vehicleOther;
  118. }
  119. public void setVehicleOther(String vehicleOther) {
  120. this.vehicleOther = vehicleOther;
  121. }
  122. public BigDecimal getRealAmount() {
  123. return realAmount;
  124. }
  125. public void setRealAmount(BigDecimal realAmount) {
  126. this.realAmount = realAmount;
  127. }
  128. public Integer getId() {
  129. return id;
  130. }
  131. public void setId(Integer id) {
  132. this.id = id;
  133. }
  134. public Integer getType() {
  135. return type;
  136. }
  137. public void setType(Integer type) {
  138. this.type = type;
  139. }
  140. public BigDecimal getAmount() {
  141. return amount;
  142. }
  143. public void setAmount(BigDecimal amount) {
  144. this.amount = amount;
  145. }
  146. public String getStartDistrict() {
  147. return startDistrict;
  148. }
  149. public void setStartDistrict(String startDistrict) {
  150. this.startDistrict = startDistrict;
  151. }
  152. public String getEndDistrict() {
  153. return endDistrict;
  154. }
  155. public void setEndDistrict(String endDistrict) {
  156. this.endDistrict = endDistrict;
  157. }
  158. }