package com.gkhy.safePlatform.equipment.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
/**
|
* 设备保养明细(EquipmentTakecareStardardDetail)表实体类
|
*
|
* @author xurui
|
* @since 2022-07-19 15:22:05
|
*/
|
@SuppressWarnings("serial")
|
@TableName("equipment_takecare_stardard_detail")
|
public class EquipmentTakecareStardardDetail 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 filePath;
|
|
public String getFilePath() {
|
return filePath;
|
}
|
|
public void setFilePath(String filePath) {
|
this.filePath = filePath;
|
}
|
|
}
|