SonExpenseAccount.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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 Integer secondaryType;
  14. private String secondaryTypeOther;
  15. private String attachmentUrl;
  16. private List<SonExpenseAccountDetails> detList;
  17. public Integer getSecondaryType() {
  18. return secondaryType;
  19. }
  20. public void setSecondaryType(Integer secondaryType) {
  21. this.secondaryType = secondaryType;
  22. }
  23. public String getSecondaryTypeOther() {
  24. return secondaryTypeOther;
  25. }
  26. public void setSecondaryTypeOther(String secondaryTypeOther) {
  27. this.secondaryTypeOther = secondaryTypeOther;
  28. }
  29. public String getAttachmentUrl() {
  30. return attachmentUrl;
  31. }
  32. public void setAttachmentUrl(String attachmentUrl) {
  33. this.attachmentUrl = attachmentUrl;
  34. }
  35. public String getDistrictName() {
  36. return districtName;
  37. }
  38. public void setDistrictName(String districtName) {
  39. this.districtName = districtName;
  40. }
  41. public Integer getId() {
  42. return id;
  43. }
  44. public void setId(Integer id) {
  45. this.id = id;
  46. }
  47. public BigDecimal getTotalAmount() {
  48. return totalAmount;
  49. }
  50. public void setTotalAmount(BigDecimal totalAmount) {
  51. this.totalAmount = totalAmount;
  52. }
  53. public Integer getType() {
  54. return type;
  55. }
  56. public void setType(Integer type) {
  57. this.type = type;
  58. }
  59. public String getTypeOther() {
  60. return typeOther;
  61. }
  62. public void setTypeOther(String typeOther) {
  63. this.typeOther = typeOther;
  64. }
  65. public String getUserNames() {
  66. return userNames;
  67. }
  68. public void setUserNames(String userNames) {
  69. this.userNames = userNames;
  70. }
  71. public String getReleaseStart() {
  72. return releaseStart;
  73. }
  74. public void setReleaseStart(String releaseStart) {
  75. this.releaseStart = releaseStart;
  76. }
  77. public String getReleaseEnd() {
  78. return releaseEnd;
  79. }
  80. public void setReleaseEnd(String releaseEnd) {
  81. this.releaseEnd = releaseEnd;
  82. }
  83. public List<SonExpenseAccountDetails> getDetList() {
  84. return detList;
  85. }
  86. public void setDetList(List<SonExpenseAccountDetails> detList) {
  87. this.detList = detList;
  88. }
  89. }