package com.fzzy.igds.data;
|
|
import com.ruoyi.common.annotation.Excel;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 监管库存报表数据
|
*
|
* @author sgj
|
* @date 2025/12/19
|
*/
|
@Data
|
public class SuperInventoryReportData implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 收储公司
|
*/
|
private String customerId;
|
|
@Excel(name = "收储公司", sort = 1)
|
private String customerName;
|
|
/**
|
* 所属库区
|
*/
|
private String deptId;
|
|
@Excel(name = "所属库区", sort = 2)
|
private String deptName;
|
|
/**
|
* 所属仓库
|
*/
|
private String depotId;
|
|
@Excel(name = "所属仓库", sort = 3)
|
private String depotName;
|
|
|
/**
|
* 期初数量(单位KG)
|
*/
|
@Excel(name = "期初数量(单位KG)", sort = 4)
|
private Double initialWeight = 0.0;
|
|
/**
|
* 入库数量(单位KG)
|
*/
|
@Excel(name = "入库数量(单位KG)", sort = 5)
|
private Double recordInWeight = 0.0;
|
|
/**
|
* 倒入数量(单位KG)
|
*/
|
@Excel(name = "倒入数量(单位KG)", sort = 6)
|
private Double changeInWeight = 0.0;
|
|
/**
|
* 出库数量(单位KG)
|
*/
|
@Excel(name = "出库数量(单位KG)", sort = 7)
|
private Double recordOutWeight = 0.0;
|
|
/**
|
* 倒出数量(单位KG)
|
*/
|
@Excel(name = "倒出数量(单位KG)", sort = 8)
|
private Double changeOutWeight = 0.0;
|
|
/**
|
* 损耗数量(单位KG)
|
*/
|
@Excel(name = "损耗数量(单位KG)", sort = 9)
|
private Double lossWeight = 0.0;
|
|
/**
|
* 期末数量(单位KG)
|
*/
|
@Excel(name = "期末数量(单位KG)", sort = 10)
|
private Double finalWeight = 0.0;
|
|
}
|