AssetsValuationDetails.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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. private Double assetShare;
  22. public void setNav(Double nav) {
  23. this.nav = nav;
  24. }
  25. public void setTotalMarketValue(Double totalMarketValue) {
  26. this.totalMarketValue = totalMarketValue;
  27. }
  28. public void setNetAssetsValue(Double netAssetsValue) {
  29. this.netAssetsValue = netAssetsValue;
  30. }
  31. public void setIncrement(Double increment) {
  32. this.increment = increment;
  33. }
  34. public Double getAssetShare() {
  35. return assetShare;
  36. }
  37. public void setAssetShare(Double assetShare) {
  38. this.assetShare = assetShare;
  39. }
  40. public int getId() {
  41. return id;
  42. }
  43. public void setId(int id) {
  44. this.id = id;
  45. }
  46. public int getUserId() {
  47. return userId;
  48. }
  49. public void setUserId(int userId) {
  50. this.userId = userId;
  51. }
  52. public String getTitle() {
  53. return title;
  54. }
  55. public void setTitle(String title) {
  56. this.title = title;
  57. }
  58. public String getValuationDate() {
  59. return ValuationDate;
  60. }
  61. public void setValuationDate(String valuationDate) {
  62. ValuationDate = valuationDate;
  63. }
  64. public void setValuationDate(Date valuationDate) {
  65. ValuationDate = new SimpleDateFormat("yyyy-MM-dd").format(valuationDate);
  66. }
  67. public Double getNav() {
  68. return nav;
  69. }
  70. public Double getIncrement() {
  71. return increment;
  72. }
  73. public void setIncrement(double increment) {
  74. this.increment = increment;
  75. }
  76. public void setNav(double nav) {
  77. this.nav = nav;
  78. }
  79. public Double getCumulativeNav() {
  80. return cumulativeNav;
  81. }
  82. public void setCumulativeNav(Double cumulativeNav) {
  83. this.cumulativeNav = cumulativeNav;
  84. }
  85. public String getHeadInfo() {
  86. return headInfo;
  87. }
  88. public void setHeadInfo(String headInfo) {
  89. this.headInfo = headInfo;
  90. }
  91. public String getTailInfo() {
  92. return tailInfo;
  93. }
  94. public void setTailInfo(String tailInfo) {
  95. this.tailInfo = tailInfo;
  96. }
  97. public String getOriginalfile() {
  98. return originalfile;
  99. }
  100. public void setOriginalfile(String originalfile) {
  101. this.originalfile = originalfile;
  102. }
  103. public String getConvertedFile() {
  104. return convertedFile;
  105. }
  106. public void setConvertedFile(String convertedFile) {
  107. this.convertedFile = convertedFile;
  108. }
  109. public String getFileUrl() {
  110. return fileUrl;
  111. }
  112. public void setFileUrl(String fileUrl) {
  113. this.fileUrl = fileUrl;
  114. }
  115. public int getType() {
  116. return type;
  117. }
  118. public void setType(int type) {
  119. this.type = type;
  120. }
  121. public Double getTotalMarketValue() {
  122. return totalMarketValue;
  123. }
  124. public void setTotalMarketValue(double totalMarketValue) {
  125. this.totalMarketValue = totalMarketValue;
  126. }
  127. public Double getNetAssetsValue() {
  128. return netAssetsValue;
  129. }
  130. public void setNetAssetsValue(double netAssetsValue) {
  131. this.netAssetsValue = netAssetsValue;
  132. }
  133. @Override
  134. public String toString() {
  135. return "AssetsValuationDetails{" +
  136. "id=" + id +
  137. ", userId=" + userId +
  138. ", title='" + title + '\'' +
  139. ", ValuationDate='" + ValuationDate + '\'' +
  140. ", nav=" + nav +
  141. ", cumulativeNav=" + cumulativeNav +
  142. ", headInfo='" + headInfo + '\'' +
  143. ", tailInfo='" + tailInfo + '\'' +
  144. ", originalfile='" + originalfile + '\'' +
  145. ", convertedFile='" + convertedFile + '\'' +
  146. ", fileUrl='" + fileUrl + '\'' +
  147. ", type=" + type +
  148. ", totalMarketValue=" + totalMarketValue +
  149. ", netAssetsValue=" + netAssetsValue +
  150. '}';
  151. }
  152. }