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;
|
import java.util.Date;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2023年02月07日 17:30:00
|
*/
|
@Data
|
@Schema(description = "尾矿检测")
|
public class QualityTailingDTO 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 bc;
|
|
@Schema(description = "班次")
|
private String bcName;
|
|
@Schema(description = "采样点")
|
private String cyd;
|
|
@Schema(description = "采样点")
|
private String cydName;
|
|
@Schema(description = "采样时间")
|
@JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone = "GMT+8")
|
private Date cysj;
|
|
@Schema(description = "化验时间")
|
@JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss", timezone = "GMT+8")
|
private Date hysj;
|
|
@Schema(description = "采样数量")
|
private BigDecimal cysl;
|
|
@Schema(description = "磁性物含量")
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
private BigDecimal cxwhl;
|
|
@Schema(description = "创建人")
|
private String creator;
|
|
@Schema(description = "创建时间")
|
private java.util.Date createDate;
|
|
@Schema(description = "修改人")
|
private String updater;
|
|
@Schema(description = "修改时间")
|
private java.util.Date updateDate;
|
}
|