package com.gkhy.safePlatform.equipment.model.dto.req;
|
|
import java.sql.Timestamp;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.gkhy.safePlatform.equipment.annotation.Query;
|
|
public class EquipmentCheckStandardDetailQueryCriteria {
|
|
@Query()
|
private Long id;
|
//具体类型(页面左侧的导航栏使用) 0:仪器仪表信息 1:生产设备设施 2:安全设备设施 3:重点监管装置/设备
|
@Query()
|
private Integer infoTpe;
|
//设备ID/外键
|
@Query()
|
private Long equipmentId;
|
//序号
|
@Query()
|
private String index;
|
//检查内容
|
@Query()
|
private String checkContent;
|
//检查指标
|
@Query()
|
private String checkTarget;
|
//单位
|
@Query()
|
private String unit;
|
//巡检部位
|
@Query()
|
private String checkPart;
|
//频次
|
@Query()
|
private String rate;
|
//创建日期
|
@Query()
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Timestamp createTime;
|
//更新日期
|
@Query()
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Timestamp updateTime;
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
//具体类型(页面左侧的导航栏使用) 0:仪器仪表信息 1:生产设备设施 2:安全设备设施 3:重点监管装置/设备
|
public Integer getInfoTpe() {
|
return infoTpe;
|
}
|
|
public void setInfoTpe(Integer infoTpe) {
|
this.infoTpe = infoTpe;
|
}
|
//设备ID/外键
|
public Long getEquipmentId() {
|
return equipmentId;
|
}
|
|
public void setEquipmentId(Long equipmentId) {
|
this.equipmentId = equipmentId;
|
}
|
//序号
|
public String getIndex() {
|
return index;
|
}
|
|
public void setIndex(String index) {
|
this.index = index;
|
}
|
//检查内容
|
public String getCheckContent() {
|
return checkContent;
|
}
|
|
public void setCheckContent(String checkContent) {
|
this.checkContent = checkContent;
|
}
|
//检查指标
|
public String getCheckTarget() {
|
return checkTarget;
|
}
|
|
public void setCheckTarget(String checkTarget) {
|
this.checkTarget = checkTarget;
|
}
|
//单位
|
public String getUnit() {
|
return unit;
|
}
|
|
public void setUnit(String unit) {
|
this.unit = unit;
|
}
|
//巡检部位
|
public String getCheckPart() {
|
return checkPart;
|
}
|
|
public void setCheckPart(String checkPart) {
|
this.checkPart = checkPart;
|
}
|
//频次
|
public String getRate() {
|
return rate;
|
}
|
|
public void setRate(String rate) {
|
this.rate = rate;
|
}
|
//创建日期
|
public Timestamp getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Timestamp createTime) {
|
this.createTime = createTime;
|
}
|
//更新日期
|
public Timestamp getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Timestamp updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|