123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- package com.simuwang.base.pojo.valuation;
- import lombok.Data;
- @Data
- public class AssetsValuationInfo {
- /**
- * 用户id
- */
- private int userId;
- /**
- * 估值表id(valuation_table.id)
- */
- private int valuationId;
- /**
- * 科目代码(去掉.)
- */
- private String subjectCode;
- private String securitiesCode;
- private int secType = -1;
- /**
- * 原始科目代码(表格字段)
- */
- private String originalSubjectCode;
- /**
- * 科目名称(表格字段)
- */
- private String subjectName;
- /**
- * 数量(表格字段)
- */
- private Double securitiesAmount = null;
- /**
- * 单位成本(表格字段)
- */
- private Double unitCost;
- /**
- * 成本(表格字段)
- */
- private Double netCost;
- /**
- * 成本占比(表格字段)
- */
- private Double netCostRatio;
- /**
- * 行情(表格字段)
- */
- private Double marketPrice;
- /**
- * 市值(表格字段)
- */
- private Double marketValue;
- /**
- * 市值占比(表格字段)
- */
- private Double marketValueRatio;
- /**
- * 估值增值(表格字段)
- */
- private Double increment;
- /**
- * 停牌信息(表格字段)
- */
- private String haltInfo;
- /**
- * 权益信息(表格字段)
- */
- private String rightsInterestsInfo;
- /**
- * 币种(表格字段)
- */
- private String currency;
- /**
- * 汇率(表格字段)
- */
- private String exchangeRate;
- private Double oriCurrencyCost;
- private Double oriCurrencyMarketValue;
- private Double oriCurrencyValueAdded;
- private String subjectLevel;
- private String issuer;
- private String vProjectCode;
- private String vProjectName;
- private String costRatioAsset;
- private String mvRatioAsset;
- private String spotPrice;
- private String remark;
- private String assumingCost;
- private String holdingState;
- private String valuationDate;
- }
|