HeadInfoVO.java 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. package com.smppw.analysis.application.dto.info;
  2. import com.smppw.common.pojo.ValueLabelVO;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. /**
  6. * @author wangzaijun
  7. * @date 2023/8/7 18:18
  8. * @description 公共的头部信息
  9. */
  10. @Setter
  11. @Getter
  12. public abstract class HeadInfoVO {
  13. /**
  14. * 基金id,'HF'开头(后加36进制编码格式,不足8位长度左补零) 例:HF00000001
  15. */
  16. private String refId;
  17. /**
  18. * 供前端使用 方便他们判断
  19. */
  20. private String detailId;
  21. /**
  22. * 基金中文简称
  23. */
  24. private String refShortName;
  25. /**
  26. * 基金中文全称
  27. */
  28. private String refName;
  29. /**
  30. * 备案编码
  31. */
  32. private String registerNumber;
  33. /**
  34. * 备案编码跳转到中基协链接
  35. */
  36. private String amacUrl;
  37. /**
  38. * 公私募类型
  39. */
  40. private String raiseType;
  41. /**
  42. * 公私募类型
  43. */
  44. private String raiseTypeValue;
  45. /**
  46. * 成立日期
  47. */
  48. private String inceptionDate;
  49. /**
  50. * 一级策略id
  51. */
  52. private String strategyId;
  53. /**
  54. * 一级策略名称
  55. */
  56. private String strategy;
  57. /**
  58. * 二级策略id
  59. */
  60. private String substrategyId;
  61. /**
  62. * 二级策略名称
  63. */
  64. private String substrategy;
  65. /**
  66. * 公司规模
  67. */
  68. private Byte companyAssetSize;
  69. /**
  70. * 合并后的策略
  71. */
  72. private String strategySummaryName;
  73. /**
  74. * 最新净值日期
  75. */
  76. private String priceDate;
  77. /**
  78. * 是否小于500万
  79. */
  80. private ValueLabelVO lowerThanFiveMillionLabel;
  81. }