选煤厂生产管理平台后台代码
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
70
71
72
73
74
75
76
77
78
package com.iailab.module.pms.coalquality.modules.detection.dto;
 
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author DongYukun
 * @Description
 * @createTime 2023年12月27日 9:53:00
 */
@Data
@Schema(description =  "生产快速检查详情")
public class QualityQuickItemDTO {
 
    private static final long serialVersionUID = 1L;
 
    @Schema(description =  "id")
    @ExcelIgnore
    private String id;
 
    @Schema(description =  "流水号")
    @ExcelIgnore
    private String lsh;
 
    @Schema(description =  "压力")
    @ExcelProperty(index = 1)
    private BigDecimal yl;
 
    @Schema(description =  "密度")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    @ExcelProperty(index = 2)
    private BigDecimal md;
 
    @Schema(description =  "项目")
    @ExcelIgnore
    private String xm;
 
    @Schema(description =  "项目名称")
    @ExcelProperty(index = 0)
    private String xmName;
 
    @Schema(description =  "灰分")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal hf;
 
    @Schema(description =  "硫分")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal lf;
 
    @Schema(description =  "-1.4浮沉灰分")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal hf1;
 
    @Schema(description =  "-1.4浮沉产率")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal cl1;
 
    @Schema(description =  "1.4-1.8浮沉灰分")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal hf2;
 
    @Schema(description =  "1.4-1.8浮沉产率")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal cl2;
 
    @Schema(description =  "+1.8浮沉灰分")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal hf3;
 
    @Schema(description =  "+1.8浮沉产率")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal cl3;
}