package com.consum.base.pojo.excel;
|
|
import lombok.Data;
|
|
/**
|
* @author asus
|
* @version 1.0
|
* @description: 导出转换对象
|
* @date 2023/11/27 15:31
|
*/
|
@Data
|
public class TemplateExcelExport {
|
|
|
private String businessFormCode;
|
|
private String tenantName;
|
|
private String goodsName;
|
|
private String goodsModeName;
|
|
private Integer num;
|
|
private Integer totalAmount;
|
|
private String remark;
|
|
private int price;
|
|
private String warehouseName;
|
}
|