package com.zs.create.modules.socialrecord.entity; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.experimental.Accessors; import org.jeecgframework.poi.excel.annotation.Excel; import org.springframework.format.annotation.DateTimeFormat; import java.util.Date; @Data @Accessors(chain = true) @ApiModel(value = "实践打卡记录vo", description = "实践打卡记录vo") public class RecordImportVo { @ApiModelProperty(value = "姓名/学号") @Excel(name = "姓名/学号", width = 35,orderNum = "1") private String name; @ApiModelProperty(value = "学院") @Excel(name = "学院", width = 35,orderNum = "2") private String college; @ApiModelProperty(value = "位置") @Excel(name = "位置", width = 50,orderNum = "3") private String position; @ApiModelProperty(value = "打卡时间") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @Excel(name = "打卡时间", width = 35,orderNum = "4") private Date createTime; @ApiModelProperty(value = "备注") @Excel(name = "备注", width = 50,orderNum = "5") private String remark; } 参数是否有误
时间: 2024-04-13 11:27:53 浏览: 198
Loye.zip_Entity.h
根据你提供的代码,参数设置看起来是正确的。每个字段都使用了`@Excel`注解指定了导出的列名、宽度和顺序。
但是,要注意确保你的项目中是否有正确引入`org.jeecgframework.poi.excel.annotation.Excel`和相关依赖。如果缺少这些依赖,可能会导致参数错误的异常。
此外,如果你使用的是较旧版本的`org.jeecgframework.poi`库,可能需要检查是否有更新的版本可用。有时候,旧版本的库可能存在一些已知的问题,更新到最新版本可能会解决一些问题。
如果你仍然遇到参数错误的异常,请提供具体的异常信息,以便更进一步地排查问题。
阅读全文