选煤厂生产管理平台后台代码
Jay
6 天以前 8d3ff63ab144ad6b48015b01196bc901944a48f9
提交 | 用户 | 时间
7e21bc 1 package com.iailab.module.pms.coalquality.modules.detection.dto;
J 2
3 import com.fasterxml.jackson.annotation.JsonFormat;
4 import io.swagger.v3.oas.annotations.media.Schema;
5 import lombok.Data;
6
7 import java.io.Serializable;
8 import java.math.BigDecimal;
8d3ff6 9 import java.util.Date;
7e21bc 10
J 11 /**
12  * @author PanZhibao
13  * @Description
14  * @createTime 2023年02月07日 17:30:00
15  */
16 @Data
17 @Schema(description = "尾矿检测")
18 public class QualityTailingDTO implements Serializable {
19     private static final long serialVersionUID = 1L;
20
21     @Schema(description = "id")
22     private String id;
23
24     @Schema(description = "流水号")
25     private String code;
26
27     @Schema(description = "日期")
28     @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
29     private java.util.Date rq;
30
31     @Schema(description = "班次")
32     private String bc;
33
34     @Schema(description = "班次")
35     private String bcName;
36
37     @Schema(description = "采样点")
38     private String cyd;
39
40     @Schema(description = "采样点")
41     private String cydName;
42
43     @Schema(description = "采样时间")
8d3ff6 44     @JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone = "GMT+8")
J 45     private Date cysj;
7e21bc 46
J 47     @Schema(description = "化验时间")
8d3ff6 48     @JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone = "GMT+8")
J 49     private Date hysj;
7e21bc 50
J 51     @Schema(description = "采样数量")
52     private BigDecimal cysl;
53
54     @Schema(description = "磁性物含量")
55     @JsonFormat(shape = JsonFormat.Shape.STRING)
56     private BigDecimal cxwhl;
57
58     @Schema(description = "创建人")
59     private String creator;
60
61     @Schema(description = "创建时间")
62     private java.util.Date createDate;
63
64     @Schema(description = "修改人")
65     private String updater;
66
67     @Schema(description = "修改时间")
68     private java.util.Date updateDate;
69 }