PubilclyCurrencyFundHeadInfoVO.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.smppw.analysis.application.dto.info;
  2. import com.smppw.common.pojo.ValueLabelVO;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. import java.math.BigDecimal;
  6. import java.util.List;
  7. /**
  8. * @author wangzaijun
  9. * @date 2023/8/7 16:41
  10. * @description 货币型公募基金 头部
  11. */
  12. @Setter
  13. @Getter
  14. public class PubilclyCurrencyFundHeadInfoVO {
  15. /**
  16. * 基金管理人ID
  17. */
  18. private String trustId;
  19. /**
  20. * 基金管理人
  21. */
  22. private String trustName;
  23. /**
  24. * 基金经理 id:名称
  25. */
  26. private List<ValueLabelVO> managers;
  27. /**
  28. * 基金状态值
  29. */
  30. private String fundStatusValue;
  31. /**
  32. * 基金规模---仅仅公募用
  33. */
  34. private String fundSize;
  35. /**
  36. * 基金规模日期---基金公募用(货币型)
  37. */
  38. private String fundSizeDate;
  39. /**
  40. * 基金规模--仅仅公募用--单位
  41. */
  42. private String fundSizeUnit;
  43. /**
  44. * 是否货币型公募基金
  45. */
  46. private Integer isCurrency;
  47. /**
  48. * 7日年化收益
  49. */
  50. private BigDecimal profitSevenDayAnnual;
  51. /**
  52. * 百份、万份、百万份收益
  53. */
  54. private BigDecimal retPerUnit;
  55. /**
  56. * 单位- 1:百份 2:万份 3:百万份
  57. */
  58. private String publicWorthUnit;
  59. }