ManualFundInvestInfoVO.java 429 B

12345678910111213141516171819202122232425262728
  1. package com.smppw.analysis.domain.dto.info;
  2. import lombok.Data;
  3. /**
  4. * @author mozuwen
  5. * @date 2023/8/9 09:25
  6. * @description 投资类信息说明
  7. */
  8. @Data
  9. public class ManualFundInvestInfoVO {
  10. /**
  11. * 投资目标
  12. */
  13. private String investmentObjective;
  14. /**
  15. * 投资策略
  16. */
  17. private String strategyDescription;
  18. /**
  19. * 投资范围
  20. */
  21. private String investmentScope;
  22. }