ExcelErrorVO.java.vm 924 B

1234567891011121314151617181920212223242526
  1. #set($name = "${context.className.substring(0,1).toLowerCase()}${context.className.substring(1)}")
  2. #set($pKeyName =${context.pKeyName})
  3. #set($peimaryKeyName = "${pKeyName.substring(0,1).toUpperCase()}${pKeyName.substring(1)}")
  4. #set($peimaryKeyname = "${pKeyName.substring(0,1).toLowerCase()}${pKeyName.substring(1)}")
  5. package ${context.package}.model.$!{name.toLowerCase()};
  6. import lombok.Data;
  7. import cn.afterturn.easypoi.excel.annotation.Excel;
  8. import com.alibaba.fastjson.annotation.JSONField;
  9. /**
  10. *
  11. * ${context.genInfo.description}
  12. * @版本: ${context.genInfo.version}
  13. * @版权: ${context.genInfo.copyright}
  14. * @作者: ${context.genInfo.createUser}
  15. * @日期: ${context.genInfo.createDate}
  16. */
  17. @Data
  18. public class $!{context.className}ExcelErrorVO extends $!{context.className}ExcelVO{
  19. @Excel(name = "异常原因",orderNum = "-999")
  20. @JSONField(name = "errorsInfo")
  21. private String errorsInfo;
  22. }