1234567891011121314151617181920 |
- package com.jkcredit.invoice.model.entity;
- import cn.afterturn.easypoi.excel.annotation.Excel;
- import cn.afterturn.easypoi.excel.annotation.ExcelTarget;
- import lombok.Data;
- /**
- * @description:
- * @author: xusonglin
- * @create: 2019/12/13 16:43
- * @version: V1.0
- **/
- @Data
- @ExcelTarget("WayBillTest")
- public class WayBillTest {
- @Excel(name = "num")
- private String num;
- @Excel(name = "wayBillNum")
- private String wayBillNum;
- }
|