选煤厂生产管理平台后台代码
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
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;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2023年02月07日 17:30:00
 */
@Data
@Schema(description = "介质粉检测")
public class QualityMediumDTO 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 mc;
 
    @Schema(description = "水分")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private BigDecimal sf;
 
    @Schema(description = "创建人")
    private String creator;
 
    @Schema(description = "创建时间")
    private java.util.Date createDate;
 
    @Schema(description = "修改人")
    private String updater;
 
    @Schema(description = "修改时间")
    private java.util.Date updateDate;
}