李旭东
2023-12-08 7efc6ed86025b610cab109a2e9f83362740d8ed4
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.thhy.materials.modules.biz.concret.entity;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
 
import java.io.Serializable;
 
@Data
@Getter
@Setter
@ToString
public class TMixingConsume implements Serializable {
    /**
     * 原料消耗id(与t_mixing_signboard)关联
     */
    private String mixingConsumeId;
 
    /**
     * 原料名称
     */
    private String dictId;
 
    /**
     * 规格型号
     */
    private String spec;
 
    /**
     * 生产厂家
     */
    private String manufacturer;
 
    /**
     * 含水率
     */
    private String watFull;
 
    /**
     * 理论用量(kg/m3)
     */
    private String planAmnt;
 
    /**
     * 实际用量(kg/m3)
     */
    private String factAmnt;
 
    /**
     * 施工日期
     */
    private String saveStamp;
 
    /**
     * 施工部位
     */
    private String construction;
    /**
     * 施工部位
     */
    private String mixingSignboardId;
    //原料名称
    private String dictName;
 
    private Integer star;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String createTime;
    //施工单位
    private String constructionUnit;
 
    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database table t_mixing_consume
     *
     * @mbg.generated Thu Nov 16 13:59:09 CST 2023
     */
    private static final long serialVersionUID = 1L;
}