DistributionTablePageVO.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package com.simuwang.base.pojo.vo;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Data;
  6. import java.math.BigDecimal;
  7. import java.util.Date;
  8. /**
  9. * FileName: DistributionDO
  10. * Author: chenjianhua
  11. * Date: 2024/9/15 13:54
  12. * Description: ${DESCRIPTION}
  13. */
  14. @Data
  15. public class DistributionTablePageVO {
  16. /**
  17. * 主键Id
  18. */
  19. private Integer id;
  20. /**
  21. * 渠道Id
  22. */
  23. private Integer channelId;
  24. /**
  25. * 渠道名称
  26. */
  27. private Integer channelName;
  28. /**
  29. * 基金id
  30. */
  31. private String fundId;
  32. /**
  33. * 基金名称
  34. */
  35. private String fundName;
  36. /**
  37. * 备案编码
  38. */
  39. private String registerNumber;
  40. /**
  41. * 公司名称
  42. */
  43. private String companyName;
  44. /**
  45. * 分红日期
  46. */
  47. private String distributeDate;
  48. /**
  49. * 基金分配类型标志:-1-其他,1-分红,2-拆分,3-业绩报酬,4-注资,5-撤资
  50. */
  51. private Integer distributeType;
  52. /**
  53. * 分红/拆分比例
  54. */
  55. private BigDecimal distribution;
  56. /**
  57. * 单位净值
  58. */
  59. private BigDecimal nav;
  60. /**
  61. * 累计单位净值
  62. */
  63. private BigDecimal cumulativeNavWithdrawal;
  64. /**
  65. * 是否有效:0-无效,1-有效
  66. */
  67. private Integer isvalid;
  68. /**
  69. * 更新时间
  70. */
  71. private String updateTime;
  72. }