123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- package com.simuwang.base.pojo.valuation;
- import java.text.SimpleDateFormat;
- import java.util.Date;
- public class AssetsValuationDetails {
- private int id;
- private int userId;
- private String title;
- private String ValuationDate;
- private Double nav;
- //可能没有
- private Double cumulativeNav;
- private String headInfo;
- private String tailInfo;
- private String originalfile;
- private String convertedFile;
- private String fileUrl;
- private int type;
- private Double totalMarketValue;
- private Double netAssetsValue;
- private Double increment;
- public int getId() {
- return id;
- }
- public void setId(int id) {
- this.id = id;
- }
- public int getUserId() {
- return userId;
- }
- public void setUserId(int userId) {
- this.userId = userId;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public String getValuationDate() {
- return ValuationDate;
- }
- public void setValuationDate(String valuationDate) {
- ValuationDate = valuationDate;
- }
- public void setValuationDate(Date valuationDate) {
- ValuationDate = new SimpleDateFormat("yyyy-MM-dd").format(valuationDate);
- }
- public double getNav() {
- return nav;
- }
- public double getIncrement() {
- return increment;
- }
- public void setIncrement(double increment) {
- this.increment = increment;
- }
- public void setNav(double nav) {
- this.nav = nav;
- }
- public Double getCumulativeNav() {
- return cumulativeNav;
- }
- public void setCumulativeNav(Double cumulativeNav) {
- this.cumulativeNav = cumulativeNav;
- }
- public String getHeadInfo() {
- return headInfo;
- }
- public void setHeadInfo(String headInfo) {
- this.headInfo = headInfo;
- }
- public String getTailInfo() {
- return tailInfo;
- }
- public void setTailInfo(String tailInfo) {
- this.tailInfo = tailInfo;
- }
- public String getOriginalfile() {
- return originalfile;
- }
- public void setOriginalfile(String originalfile) {
- this.originalfile = originalfile;
- }
- public String getConvertedFile() {
- return convertedFile;
- }
- public void setConvertedFile(String convertedFile) {
- this.convertedFile = convertedFile;
- }
- public String getFileUrl() {
- return fileUrl;
- }
- public void setFileUrl(String fileUrl) {
- this.fileUrl = fileUrl;
- }
- public int getType() {
- return type;
- }
- public void setType(int type) {
- this.type = type;
- }
- public Double getTotalMarketValue() {
- return totalMarketValue;
- }
- public void setTotalMarketValue(double totalMarketValue) {
- this.totalMarketValue = totalMarketValue;
- }
- public Double getNetAssetsValue() {
- return netAssetsValue;
- }
- public void setNetAssetsValue(double netAssetsValue) {
- this.netAssetsValue = netAssetsValue;
- }
- @Override
- public String toString() {
- return "AssetsValuationDetails{" +
- "id=" + id +
- ", userId=" + userId +
- ", title='" + title + '\'' +
- ", ValuationDate='" + ValuationDate + '\'' +
- ", nav=" + nav +
- ", cumulativeNav=" + cumulativeNav +
- ", headInfo='" + headInfo + '\'' +
- ", tailInfo='" + tailInfo + '\'' +
- ", originalfile='" + originalfile + '\'' +
- ", convertedFile='" + convertedFile + '\'' +
- ", fileUrl='" + fileUrl + '\'' +
- ", type=" + type +
- ", totalMarketValue=" + totalMarketValue +
- ", netAssetsValue=" + netAssetsValue +
- '}';
- }
- }
|