AssetsValuationDetails.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. package com.simuwang.base.pojo.valuation;
  2. import java.text.SimpleDateFormat;
  3. import java.util.Date;
  4. public class AssetsValuationDetails {
  5. private int id;
  6. private int userId;
  7. private String title;
  8. private String ValuationDate;
  9. private Double nav;
  10. //可能没有
  11. private Double cumulativeNav;
  12. private String headInfo;
  13. private String tailInfo;
  14. private String originalfile;
  15. private String convertedFile;
  16. private String fileUrl;
  17. private int type;
  18. private Double totalMarketValue;
  19. private Double netAssetsValue;
  20. private Double increment;
  21. public int getId() {
  22. return id;
  23. }
  24. public void setId(int id) {
  25. this.id = id;
  26. }
  27. public int getUserId() {
  28. return userId;
  29. }
  30. public void setUserId(int userId) {
  31. this.userId = userId;
  32. }
  33. public String getTitle() {
  34. return title;
  35. }
  36. public void setTitle(String title) {
  37. this.title = title;
  38. }
  39. public String getValuationDate() {
  40. return ValuationDate;
  41. }
  42. public void setValuationDate(String valuationDate) {
  43. ValuationDate = valuationDate;
  44. }
  45. public void setValuationDate(Date valuationDate) {
  46. ValuationDate = new SimpleDateFormat("yyyy-MM-dd").format(valuationDate);
  47. }
  48. public double getNav() {
  49. return nav;
  50. }
  51. public double getIncrement() {
  52. return increment;
  53. }
  54. public void setIncrement(double increment) {
  55. this.increment = increment;
  56. }
  57. public void setNav(double nav) {
  58. this.nav = nav;
  59. }
  60. public Double getCumulativeNav() {
  61. return cumulativeNav;
  62. }
  63. public void setCumulativeNav(Double cumulativeNav) {
  64. this.cumulativeNav = cumulativeNav;
  65. }
  66. public String getHeadInfo() {
  67. return headInfo;
  68. }
  69. public void setHeadInfo(String headInfo) {
  70. this.headInfo = headInfo;
  71. }
  72. public String getTailInfo() {
  73. return tailInfo;
  74. }
  75. public void setTailInfo(String tailInfo) {
  76. this.tailInfo = tailInfo;
  77. }
  78. public String getOriginalfile() {
  79. return originalfile;
  80. }
  81. public void setOriginalfile(String originalfile) {
  82. this.originalfile = originalfile;
  83. }
  84. public String getConvertedFile() {
  85. return convertedFile;
  86. }
  87. public void setConvertedFile(String convertedFile) {
  88. this.convertedFile = convertedFile;
  89. }
  90. public String getFileUrl() {
  91. return fileUrl;
  92. }
  93. public void setFileUrl(String fileUrl) {
  94. this.fileUrl = fileUrl;
  95. }
  96. public int getType() {
  97. return type;
  98. }
  99. public void setType(int type) {
  100. this.type = type;
  101. }
  102. public Double getTotalMarketValue() {
  103. return totalMarketValue;
  104. }
  105. public void setTotalMarketValue(double totalMarketValue) {
  106. this.totalMarketValue = totalMarketValue;
  107. }
  108. public Double getNetAssetsValue() {
  109. return netAssetsValue;
  110. }
  111. public void setNetAssetsValue(double netAssetsValue) {
  112. this.netAssetsValue = netAssetsValue;
  113. }
  114. @Override
  115. public String toString() {
  116. return "AssetsValuationDetails{" +
  117. "id=" + id +
  118. ", userId=" + userId +
  119. ", title='" + title + '\'' +
  120. ", ValuationDate='" + ValuationDate + '\'' +
  121. ", nav=" + nav +
  122. ", cumulativeNav=" + cumulativeNav +
  123. ", headInfo='" + headInfo + '\'' +
  124. ", tailInfo='" + tailInfo + '\'' +
  125. ", originalfile='" + originalfile + '\'' +
  126. ", convertedFile='" + convertedFile + '\'' +
  127. ", fileUrl='" + fileUrl + '\'' +
  128. ", type=" + type +
  129. ", totalMarketValue=" + totalMarketValue +
  130. ", netAssetsValue=" + netAssetsValue +
  131. '}';
  132. }
  133. }