15030600271
2023-11-24 ffc386a33619df27c620f293ed0ec4c3ef17d506
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
56
57
58
59
package com.thhy.materials.modules.biz.mixingstationstorage.entity;
 
import com.thhy.general.annotations.Excel;
import com.thhy.general.annotations.Idkey;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @Author QiuYuHao
 * @CreateDate 2023-09-04 13:18:36
 * 搅拌站入库记录
 */
@Data
public class MinXingPlantVo implements Serializable {
    private Integer mixingPlantId;//搅拌站
    private String dictId;//    管片原料类型(字典表)
    private Integer stockType;//1入库
    private Date createTime;//入库时间
    private String supplierId;//供应商ID
    private Integer isUse;//1可用2不可用
    private String companyId;//分公司id
    private String carName;//车牌号
    private String proId;//项目ID
    private String createUser;//创建人
    private Integer byId;//序号
 
    @Excel(sort = 1,title = "入库时间")
    private Date createDate;//字符串的入库时间
 
    @Excel(sort = 2,title = "供应商")
    private String supplierName;//供应商名称
 
    @Excel(sort = 3,title = "原料名称")
    private String dictName;//物料名称
 
    @Excel(sort = 4,title = "入库重量")
    private Double changeStock;//入库重量
 
    @Excel(sort = 5,title = "计量单位")
    private String unit;
 
    @Excel(sort = 6,title = "入库人")
    private String username;
 
 
    private String id;
    private Integer type;
    private Integer opType;
    private String materialName;
    private double materialValue;
    private double beforeStock;
    private double afterStock;
    private String remark;
    private String pipeId;
    private String pipeNum;
 
}