关于Excel的各种注解

在实际工作中用到的再慢慢补充
public class Demo{

//字段不能为空
@NotBlank(message = "ID不能为空")
private String Id;

//cellType 定义导出数据类型(如0数字 1字符串)
@Excel(name = "上级ID", cellType = Excel.ColumnType.NUMERIC)
private String parentId;

//type 定义字段类型
@Excel(name = "帐号状态", type = Type.EXPORT)
private String status;

//name 导出模板列名
@Excel(name = "用户名")
private String userName;

//rea

关于Excel的各种注解最先出现在Python成神之路

版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/7873.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>