FundNavDeletionDTO.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. /**
  59. * 榜单周期
  60. */
  61. @ExcelIgnore
  62. private String priod;
  63. }