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/11/30 16:41
|
*/
|
@Data
|
public class InventoryExcelTemplate implements Serializable {
|
|
|
@Excel(name = "单位")
|
private String tenantName;
|
@Excel(name = "物品名称")
|
private String templateName;
|
@Excel(name = "物品型号/规格")
|
private String baseModelName;
|
@Excel(name = "库存数量")
|
private Integer stockNum;
|
@Excel(name = "盘点数量")
|
private Integer num;
|
@Excel(name = "金额")
|
private Integer totalAmount;
|
@Excel(name = "盘点是否一致(是/否)")
|
private String inventoryDeception;
|
@Excel(name = "盘点差异描述")
|
private String deception;
|
@Excel(name = "备注")
|
private String remark;
|
@ExcelIgnore
|
private String operatorName;
|
@ExcelIgnore
|
private Long createTime;
|
@ExcelIgnore
|
private Long endTime;
|
@ExcelIgnore
|
private String monitorName;
|
@ExcelIgnore
|
private Integer inventoryResult;
|
|
|
}
|