AssetsValuationInfo.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. package com.simuwang.base.pojo.valuation;
  2. import lombok.Data;
  3. @Data
  4. public class AssetsValuationInfo {
  5. /**
  6. * 用户id
  7. */
  8. private int userId;
  9. /**
  10. * 估值表id(valuation_table.id)
  11. */
  12. private int valuationId;
  13. /**
  14. * 科目代码(去掉.)
  15. */
  16. private String subjectCode;
  17. private String securitiesCode;
  18. private int secType = -1;
  19. /**
  20. * 原始科目代码(表格字段)
  21. */
  22. private String originalSubjectCode;
  23. /**
  24. * 科目名称(表格字段)
  25. */
  26. private String subjectName;
  27. /**
  28. * 数量(表格字段)
  29. */
  30. private Double securitiesAmount = null;
  31. /**
  32. * 单位成本(表格字段)
  33. */
  34. private Double unitCost;
  35. /**
  36. * 成本(表格字段)
  37. */
  38. private Double netCost;
  39. /**
  40. * 成本占比(表格字段)
  41. */
  42. private Double netCostRatio;
  43. /**
  44. * 行情(表格字段)
  45. */
  46. private Double marketPrice;
  47. /**
  48. * 市值(表格字段)
  49. */
  50. private Double marketValue;
  51. /**
  52. * 市值占比(表格字段)
  53. */
  54. private Double marketValueRatio;
  55. /**
  56. * 估值增值(表格字段)
  57. */
  58. private Double increment;
  59. /**
  60. * 停牌信息(表格字段)
  61. */
  62. private String haltInfo;
  63. /**
  64. * 权益信息(表格字段)
  65. */
  66. private String rightsInterestsInfo;
  67. /**
  68. * 币种(表格字段)
  69. */
  70. private String currency;
  71. /**
  72. * 汇率(表格字段)
  73. */
  74. private String exchangeRate;
  75. private Double oriCurrencyCost;
  76. private Double oriCurrencyMarketValue;
  77. private Double oriCurrencyValueAdded;
  78. private String subjectLevel;
  79. private String issuer;
  80. private String vProjectCode;
  81. private String vProjectName;
  82. private String costRatioAsset;
  83. private String mvRatioAsset;
  84. private String spotPrice;
  85. private String remark;
  86. private String assumingCost;
  87. private String holdingState;
  88. private String valuationDate;
  89. }