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 EquipmentTakecareDetailQueryCriteria {
|
|
@Query()
|
private Long id;
|
//具体类型(页面左侧的导航栏使用) 0:仪器仪表信息 1:生产设备设施 2:安全设备设施 3:重点监管装置/设备
|
@Query()
|
private Integer infoTpe;
|
//设备ID/外键
|
@Query()
|
private Long equipmentId;
|
//保养内容
|
@Query()
|
private String takecareMemo;
|
//保养负责人/外键
|
@Query()
|
private Long leadingPersonId;
|
//保养日期
|
@Query()
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Timestamp takecareDate;
|
//保养负责人单位
|
@Query()
|
private Long leadingPersonDepartmentId;
|
//创建日期
|
@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;
|
//是否删除 0:未删除 1:删除
|
@Query()
|
private Integer delFlag = 0;
|
public Integer getDelFlag() {
|
return delFlag;
|
}
|
|
public void setDelFlag(Integer delFlag) {
|
this.delFlag = delFlag;
|
}
|
|
|
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 getTakecareMemo() {
|
return takecareMemo;
|
}
|
|
public void setTakecareMemo(String takecareMemo) {
|
this.takecareMemo = takecareMemo;
|
}
|
//保养负责人/外键
|
public Long getLeadingPersonId() {
|
return leadingPersonId;
|
}
|
|
public void setLeadingPersonId(Long leadingPersonId) {
|
this.leadingPersonId = leadingPersonId;
|
}
|
//保养日期
|
public Timestamp getTakecareDate() {
|
return takecareDate;
|
}
|
|
public void setTakecareDate(Timestamp takecareDate) {
|
this.takecareDate = takecareDate;
|
}
|
//保养负责人单位
|
public Long getLeadingPersonDepartmentId() {
|
return leadingPersonDepartmentId;
|
}
|
|
public void setLeadingPersonDepartmentId(Long leadingPersonDepartmentId) {
|
this.leadingPersonDepartmentId = leadingPersonDepartmentId;
|
}
|
//创建日期
|
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;
|
}
|
}
|