package com.gkhy.safePlatform.equipment.entity;
|
|
import java.sql.Timestamp;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.gkhy.safePlatform.equipment.entity.BaseDomain;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
/**
|
* 设备保养明细(EquipmentTakecareDetail)表实体类
|
*
|
* @author xurui
|
* @since 2022-08-03 11:14:57
|
*/
|
@SuppressWarnings("serial")
|
@TableName("equipment_takecare_detail")
|
public class EquipmentTakecareDetail extends BaseDomain {
|
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
//具体类型(页面左侧的导航栏使用) 0:仪器仪表信息 1:生产设备设施 2:安全设备设施 3:重点监管装置/设备
|
private Integer infoTpe;
|
|
public Integer getInfoTpe() {
|
return infoTpe;
|
}
|
|
public void setInfoTpe(Integer infoTpe) {
|
this.infoTpe = infoTpe;
|
}
|
//设备ID/外键
|
private Long equipmentId;
|
|
public Long getEquipmentId() {
|
return equipmentId;
|
}
|
|
public void setEquipmentId(Long equipmentId) {
|
this.equipmentId = equipmentId;
|
}
|
//保养内容
|
private String takecareMemo;
|
|
public String getTakecareMemo() {
|
return takecareMemo;
|
}
|
|
public void setTakecareMemo(String takecareMemo) {
|
this.takecareMemo = takecareMemo;
|
}
|
//保养负责人/外键
|
private Long leadingPersonId;
|
|
public Long getLeadingPersonId() {
|
return leadingPersonId;
|
}
|
|
public void setLeadingPersonId(Long leadingPersonId) {
|
this.leadingPersonId = leadingPersonId;
|
}
|
//保养负责人名称
|
private String leadingPersonName;
|
|
public String getLeadingPersonName() {
|
return leadingPersonName;
|
}
|
|
public void setLeadingPersonName(String leadingPersonName) {
|
this.leadingPersonName = leadingPersonName;
|
}
|
//保养日期
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Timestamp takecareDate;
|
|
public Timestamp getTakecareDate() {
|
return takecareDate;
|
}
|
|
public void setTakecareDate(Timestamp takecareDate) {
|
this.takecareDate = takecareDate;
|
}
|
//保养负责人单位
|
private Long leadingPersonDepartmentId;
|
|
public Long getLeadingPersonDepartmentId() {
|
return leadingPersonDepartmentId;
|
}
|
|
public void setLeadingPersonDepartmentId(Long leadingPersonDepartmentId) {
|
this.leadingPersonDepartmentId = leadingPersonDepartmentId;
|
}
|
//保养负责人单位名称
|
private String leadingPersonDepartmentName;
|
|
public String getLeadingPersonDepartmentName() {
|
return leadingPersonDepartmentName;
|
}
|
|
public void setLeadingPersonDepartmentName(String leadingPersonDepartmentName) {
|
this.leadingPersonDepartmentName = leadingPersonDepartmentName;
|
}
|
|
}
|