选煤厂生产管理平台后台代码
Jay
6 天以前 8d3ff63ab144ad6b48015b01196bc901944a48f9
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
package com.iailab.module.pms.coalquality.modules.detection.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2023年02月07日 17:30:00
 */
@Data
@Schema(description = "尾矿检测")
public class QualityTailingDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "id")
    private String id;
 
    @Schema(description = "流水号")
    private String code;
 
    @Schema(description = "日期")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private java.util.Date rq;
 
    @Schema(description = "班次")
    private String bc;
 
    @Schema(description = "班次")
    private String bcName;
 
    @Schema(description = "采样点")
    private String cyd;
 
    @Schema(description = "采样点")
    private String cydName;
 
    @Schema(description = "采样时间")
    @JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone = "GMT+8")
    private Date cysj;
 
    @Schema(description = "化验时间")
    @JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone = "GMT+8")
    private Date hysj;
 
    @Schema(description = "采样数量")
    private BigDecimal cysl;
 
    @Schema(description = "磁性物含量")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal cxwhl;
 
    @Schema(description = "创建人")
    private String creator;
 
    @Schema(description = "创建时间")
    private java.util.Date createDate;
 
    @Schema(description = "修改人")
    private String updater;
 
    @Schema(description = "修改时间")
    private java.util.Date updateDate;
}