张晓波
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
package com.thhy.materials.modules.biz.mixingstationstorage.entity;
 
import com.thhy.general.annotations.Excel;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @Author QiuYuHao
 * @CreateDate 2023-09-05 11:00:13
 * 搅拌站-消耗记录实体
 */
@Data
public class MXConsumptionRecordsVo implements Serializable {
    private Integer id;
    @Excel(sort = 1,title = "出库时间")
    private String createDate;
 
    @Excel(sort = 2,title = "原料名称")
    private String materialName;
 
    @Excel(sort = 3,title = "计量单位")
    private String unit;
 
    @Excel(sort = 4,title = "出库重量")
    private String materialValue;
 
    @Excel(sort = 5,title = "管片编号")
    private String pipNum;
 
    @Excel(sort = 6,title = "项目名")
    private String proName;
}