WayBillTest.java 445 B

1234567891011121314151617181920
  1. package com.jkcredit.invoice.model.entity;
  2. import cn.afterturn.easypoi.excel.annotation.Excel;
  3. import cn.afterturn.easypoi.excel.annotation.ExcelTarget;
  4. import lombok.Data;
  5. /**
  6. * @description:
  7. * @author: xusonglin
  8. * @create: 2019/12/13 16:43
  9. * @version: V1.0
  10. **/
  11. @Data
  12. @ExcelTarget("WayBillTest")
  13. public class WayBillTest {
  14. @Excel(name = "num")
  15. private String num;
  16. @Excel(name = "wayBillNum")
  17. private String wayBillNum;
  18. }