提交 | 用户 | 时间
|
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; |
|
9 |
|
|
10 |
/** |
|
11 |
* @author PanZhibao |
|
12 |
* @Description |
|
13 |
* @createTime 2023年02月07日 17:30:00 |
|
14 |
*/ |
|
15 |
@Data |
|
16 |
@Schema(description = "介质粉检测") |
|
17 |
public class QualityMediumDTO implements Serializable { |
|
18 |
private static final long serialVersionUID = 1L; |
|
19 |
|
|
20 |
@Schema(description = "id") |
|
21 |
private String id; |
|
22 |
|
|
23 |
@Schema(description = "流水号") |
|
24 |
private String code; |
|
25 |
|
|
26 |
@Schema(description = "日期") |
|
27 |
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|
28 |
private java.util.Date rq; |
|
29 |
|
|
30 |
@Schema(description = "名称") |
|
31 |
private String mc; |
|
32 |
|
|
33 |
@Schema(description = "水分") |
|
34 |
@JsonFormat(shape = JsonFormat.Shape.STRING) |
|
35 |
private BigDecimal sf; |
|
36 |
|
|
37 |
@Schema(description = "创建人") |
|
38 |
private String creator; |
|
39 |
|
|
40 |
@Schema(description = "创建时间") |
|
41 |
private java.util.Date createDate; |
|
42 |
|
|
43 |
@Schema(description = "修改人") |
|
44 |
private String updater; |
|
45 |
|
|
46 |
@Schema(description = "修改时间") |
|
47 |
private java.util.Date updateDate; |
|
48 |
} |