package com.consum.base.pojo.excel;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import cn.afterturn.easypoi.excel.annotation.ExcelIgnore;
|
import java.io.Serializable;
|
import lombok.Data;
|
|
/**
|
* @author asus
|
* @version 1.0
|
* @description: 调拨导出excel模板
|
* @date 2023/12/1 10:02
|
*/
|
@Data
|
public class TransferExcelTemplate implements Serializable {
|
|
@Excel(name = "单位")
|
private String tenantName;
|
@Excel(name = "物品名称")
|
private String templateName;
|
@Excel(name = "物品型号/规格")
|
private String baseModelName;
|
@Excel(name = "数量")
|
private Integer num;
|
@Excel(name = "金额")
|
private Integer totalAmount;
|
@Excel(name = "备注")
|
private String remark;
|
|
|
@ExcelIgnore
|
private String businessFormCode;
|
@ExcelIgnore
|
private Long createTime;
|
@ExcelIgnore
|
private String operatorName;
|
@ExcelIgnore
|
private String inAgencyName;
|
@ExcelIgnore
|
private String outAgencyName;
|
|
}
|