张晓波
2023-09-19 164694c47c35d6654df69b533e8dbf8b5423efc5
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
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 String 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;
}