提交 | 用户 | 时间
|
7e21bc
|
1 |
package com.iailab.module.pms.coalquality.modules.detection.dto; |
J |
2 |
|
|
3 |
import com.alibaba.excel.annotation.ExcelIgnore; |
|
4 |
import com.alibaba.excel.annotation.ExcelProperty; |
|
5 |
import com.fasterxml.jackson.annotation.JsonFormat; |
|
6 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
7 |
import lombok.Data; |
|
8 |
|
|
9 |
import java.math.BigDecimal; |
|
10 |
|
|
11 |
/** |
|
12 |
* @author DongYukun |
|
13 |
* @Description |
|
14 |
* @createTime 2023年12月27日 9:53:00 |
|
15 |
*/ |
|
16 |
@Data |
|
17 |
@Schema(description = "生产快速检查详情") |
|
18 |
public class QualityQuickItemDTO { |
|
19 |
|
|
20 |
private static final long serialVersionUID = 1L; |
|
21 |
|
|
22 |
@Schema(description = "id") |
|
23 |
@ExcelIgnore |
|
24 |
private String id; |
|
25 |
|
|
26 |
@Schema(description = "流水号") |
|
27 |
@ExcelIgnore |
|
28 |
private String lsh; |
|
29 |
|
|
30 |
@Schema(description = "压力") |
|
31 |
@ExcelProperty(index = 1) |
|
32 |
private BigDecimal yl; |
|
33 |
|
|
34 |
@Schema(description = "密度") |
|
35 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
36 |
@ExcelProperty(index = 2) |
|
37 |
private BigDecimal md; |
|
38 |
|
|
39 |
@Schema(description = "项目") |
|
40 |
@ExcelIgnore |
|
41 |
private String xm; |
|
42 |
|
|
43 |
@Schema(description = "项目名称") |
|
44 |
@ExcelProperty(index = 0) |
|
45 |
private String xmName; |
|
46 |
|
|
47 |
@Schema(description = "灰分") |
|
48 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
49 |
private BigDecimal hf; |
|
50 |
|
|
51 |
@Schema(description = "硫分") |
|
52 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
53 |
private BigDecimal lf; |
|
54 |
|
|
55 |
@Schema(description = "-1.4浮沉灰分") |
|
56 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
57 |
private BigDecimal hf1; |
|
58 |
|
|
59 |
@Schema(description = "-1.4浮沉产率") |
|
60 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
61 |
private BigDecimal cl1; |
|
62 |
|
|
63 |
@Schema(description = "1.4-1.8浮沉灰分") |
|
64 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
65 |
private BigDecimal hf2; |
|
66 |
|
|
67 |
@Schema(description = "1.4-1.8浮沉产率") |
|
68 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
69 |
private BigDecimal cl2; |
|
70 |
|
|
71 |
@Schema(description = "+1.8浮沉灰分") |
|
72 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
73 |
private BigDecimal hf3; |
|
74 |
|
|
75 |
@Schema(description = "+1.8浮沉产率") |
|
76 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
77 |
private BigDecimal cl3; |
|
78 |
} |