SonExpenseAccount.java 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package com.goafanti.expenseAccount.bo;
  2. import java.math.BigDecimal;
  3. import java.util.List;
  4. public class SonExpenseAccount {
  5. private Integer id;
  6. private BigDecimal totalAmount;
  7. private Integer type;
  8. private String typeOther;
  9. private String userNames;
  10. private String releaseStart;
  11. private String releaseEnd;
  12. private String districtName;
  13. private List<SonExpenseAccountDetails> detList;
  14. public String getDistrictName() {
  15. return districtName;
  16. }
  17. public void setDistrictName(String districtName) {
  18. this.districtName = districtName;
  19. }
  20. public Integer getId() {
  21. return id;
  22. }
  23. public void setId(Integer id) {
  24. this.id = id;
  25. }
  26. public BigDecimal getTotalAmount() {
  27. return totalAmount;
  28. }
  29. public void setTotalAmount(BigDecimal totalAmount) {
  30. this.totalAmount = totalAmount;
  31. }
  32. public Integer getType() {
  33. return type;
  34. }
  35. public void setType(Integer type) {
  36. this.type = type;
  37. }
  38. public String getTypeOther() {
  39. return typeOther;
  40. }
  41. public void setTypeOther(String typeOther) {
  42. this.typeOther = typeOther;
  43. }
  44. public String getUserNames() {
  45. return userNames;
  46. }
  47. public void setUserNames(String userNames) {
  48. this.userNames = userNames;
  49. }
  50. public String getReleaseStart() {
  51. return releaseStart;
  52. }
  53. public void setReleaseStart(String releaseStart) {
  54. this.releaseStart = releaseStart;
  55. }
  56. public String getReleaseEnd() {
  57. return releaseEnd;
  58. }
  59. public void setReleaseEnd(String releaseEnd) {
  60. this.releaseEnd = releaseEnd;
  61. }
  62. public List<SonExpenseAccountDetails> getDetList() {
  63. return detList;
  64. }
  65. public void setDetList(List<SonExpenseAccountDetails> detList) {
  66. this.detList = detList;
  67. }
  68. }