1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- package com.simuwang.base.pojo.dto;
- import com.alibaba.excel.annotation.ExcelIgnore;
- import com.alibaba.excel.annotation.ExcelProperty;
- import com.alibaba.excel.annotation.write.style.ColumnWidth;
- import com.alibaba.excel.annotation.write.style.HeadFontStyle;
- import lombok.Data;
- @Data
- public class FundNavDeletionDTO {
- /**
- * 管理人名称
- */
- @HeadFontStyle(fontHeightInPoints = 10)
- @ColumnWidth(25)
- @ExcelProperty("管理人名称")
- private String trustName;
- /**
- * 管理人备案编码
- */
- @ColumnWidth(15)
- @ExcelProperty("管理人备案编码")
- private String trustRegisterNumber;
- /**
- * 基金ID
- */
- @ColumnWidth(15)
- @ExcelProperty("基金ID")
- private String fundId;
- /**
- * 基金名称
- */
- @ColumnWidth(25)
- @ExcelProperty("基金名称")
- private String fundName;
- /**
- * 备案编码
- */
- @ColumnWidth(15)
- @ExcelProperty("备案编码")
- private String registerNumber;
- /**
- * 缺失年份
- */
- @ColumnWidth(15)
- @ExcelProperty("缺失年份")
- private String year;
- /**
- * 缺失周数
- */
- @ColumnWidth(15)
- @ExcelProperty("缺失周数")
- private String week;
- /**
- * 缺失日期
- */
- @ColumnWidth(15)
- @ExcelProperty("缺失日期")
- private String date;
- /**
- * 榜单周期
- */
- @ExcelIgnore
- private String priod;
- }
|