FundNavDeletionDTO.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package com.simuwang.base.pojo.dto;
  2. import com.alibaba.excel.annotation.ExcelIgnore;
  3. import com.alibaba.excel.annotation.ExcelProperty;
  4. import com.alibaba.excel.annotation.write.style.ColumnWidth;
  5. import com.alibaba.excel.annotation.write.style.HeadFontStyle;
  6. import lombok.Data;
  7. @Data
  8. public class FundNavDeletionDTO {
  9. /**
  10. * 管理人名称
  11. */
  12. @HeadFontStyle(fontHeightInPoints = 10)
  13. @ColumnWidth(25)
  14. @ExcelProperty("管理人名称")
  15. private String trustName;
  16. /**
  17. * 管理人备案编码
  18. */
  19. @ColumnWidth(15)
  20. @ExcelProperty("管理人备案编码")
  21. private String trustRegisterNumber;
  22. /**
  23. * 基金ID
  24. */
  25. @ColumnWidth(15)
  26. @ExcelProperty("基金ID")
  27. private String fundId;
  28. /**
  29. * 基金名称
  30. */
  31. @ColumnWidth(25)
  32. @ExcelProperty("基金名称")
  33. private String fundName;
  34. /**
  35. * 备案编码
  36. */
  37. @ColumnWidth(15)
  38. @ExcelProperty("备案编码")
  39. private String registerNumber;
  40. /**
  41. * 缺失年份
  42. */
  43. @ColumnWidth(15)
  44. @ExcelProperty("缺失年份")
  45. private String year;
  46. /**
  47. * 缺失周数
  48. */
  49. @ColumnWidth(15)
  50. @ExcelProperty("缺失周数")
  51. private String week;
  52. /**
  53. * 缺失日期
  54. */
  55. @ColumnWidth(15)
  56. @ExcelProperty("缺失日期")
  57. private String date;
  58. }