sgj
2026-03-12 533c9a4e44b06c90df7434a38e0da26e10cdac46
fzzy-igdss-core/src/main/java/com/fzzy/igds/data/InoutRecordOutExport.java
@@ -30,23 +30,26 @@
    private String foodVariety;
    @Excel(name = "毛重",sort = 5)
    private Double fullWeight = 0.0;
    private String fullWeight = "0.0";
    @Excel(name = "皮重",sort = 6)
    private Double emptyWeight = 0.0;
    private String emptyWeight = "0.0";
    @Excel(name = "净重",sort = 7)
    private Double netWeight = 0.0;
    private String netWeight = "0.0";
    @Excel(name = "扣重",sort = 8)
    private Double deOther = 0.0;
    private String deOther = "0.0";
    @Excel(name = "结算重量",sort = 9)
    private Double settleWeight = 0.0;
    private String settleWeight = "0.0";
    @Excel(name = "出库重量",sort = 10)
    private Double recordWeight = 0.0;
    private String recordWeight = "0.0";
    @Excel(name = "离库时间",sort = 11,dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date completeTime;
    @Excel(name = "修改记录",sort = 12)
    private String updateLog;
}