sgj
22 小时以前 67b2e6a3b7e4254be92e3ecbcd7b6e9f61b3aae3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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 InoutRecordInExport implements Serializable {
 
 
    @Excel(name = "单据号",sort = 1)
    private String id;
 
    @Excel(name = "车牌号",sort = 2)
    private String plateNum;
 
    @Excel(name = "仓库",sort = 3)
    private String depotId;
 
    @Excel(name = "粮食品种",sort = 4)
    private String foodVariety;
 
    @Excel(name = "毛重",sort = 5)
    private String fullWeight = "0.0";
 
    @Excel(name = "皮重",sort = 6)
    private String emptyWeight= "0.0";
 
    @Excel(name = "净重",sort = 7)
    private String netWeight = "0.0";
 
    @Excel(name = "扣重",sort = 8)
    private String deOther = "0.0";
 
    @Excel(name = "结算重量",sort = 9)
    private String settleWeight = "0.0";
 
    @Excel(name = "入库重量",sort = 10)
    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;
}