package com.fzzy.igds.data;
|
|
import com.ruoyi.common.annotation.Excel;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 出库明细报表、入库明细报表导出实体类
|
*
|
* @author sgj
|
* @date 2025/12/30
|
|
*/
|
@Data
|
public class InoutRecordDetailInExport implements Serializable {
|
|
@Excel(name = "收储公司",sort = 1)
|
private String companyId; //收储公司
|
|
@Excel(name = "库区名称",sort = 2)
|
private String deptId;
|
|
@Excel(name = "单据号",sort = 3)
|
private String id;
|
|
@Excel(name = "车牌号",sort = 4)
|
private String plateNum;
|
|
@Excel(name = "仓库",sort = 5)
|
private String depotId;
|
|
@Excel(name = "粮食品种",sort = 6)
|
private String foodVariety;
|
|
@Excel(name = "结算重量",sort = 7)
|
private String settleWeight = "0.0";
|
|
@Excel(name = "入库重量",sort = 8)
|
private String recordWeight = "0.0";
|
|
@Excel(name = "离库时间",sort = 9,dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date completeTime;
|
|
@Excel(name = "修改记录",sort = 10)
|
private String updateLog;
|
}
|