| | |
| | | package com.gkhy.safePlatform.equipment.entity; |
| | | |
| | | import java.sql.Timestamp; |
| | | 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; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | | /** |
| | | * 设备检查标准设置(EquipmentCheckStandardDetail)表实体类 |
| | | * |
| | | * @author xurui |
| | | * @since 2022-07-20 09:24:14 |
| | | * @since 2022-08-29 08:37:54 |
| | | */ |
| | | @SuppressWarnings("serial") |
| | | @TableName("equipment_check_standard_detail") |
| | |
| | | } |
| | | |
| | | //具体类型(页面左侧的导航栏使用) 0:仪器仪表信息 1:生产设备设施 2:安全设备设施 3:重点监管装置/设备 |
| | | private Integer infoTpe; |
| | | private Integer infoTpe; |
| | | |
| | | public Integer getInfoTpe() { |
| | | return infoTpe; |
| | |
| | | this.infoTpe = infoTpe; |
| | | } |
| | | //设备ID/外键 |
| | | private Long equipmentId; |
| | | private Long equipmentId; |
| | | |
| | | public Long getEquipmentId() { |
| | | return equipmentId; |
| | |
| | | this.equipmentId = equipmentId; |
| | | } |
| | | //序号 |
| | | private String indexNum; |
| | | private String indexNum; |
| | | |
| | | public String getIndexNum() { |
| | | return indexNum; |
| | |
| | | this.indexNum = indexNum; |
| | | } |
| | | //检查内容 |
| | | private String checkContent; |
| | | private String checkContent; |
| | | |
| | | public String getCheckContent() { |
| | | return checkContent; |
| | |
| | | this.checkContent = checkContent; |
| | | } |
| | | //检查指标 |
| | | private String checkTarget; |
| | | private String checkTarget; |
| | | |
| | | public String getCheckTarget() { |
| | | return checkTarget; |
| | |
| | | this.checkTarget = checkTarget; |
| | | } |
| | | //单位 |
| | | private String unit; |
| | | private String unit; |
| | | |
| | | public String getUnit() { |
| | | return unit; |
| | |
| | | this.unit = unit; |
| | | } |
| | | //巡检部位 |
| | | private String checkPart; |
| | | private String checkPart; |
| | | |
| | | public String getCheckPart() { |
| | | return checkPart; |
| | |
| | | this.checkPart = checkPart; |
| | | } |
| | | //频次 |
| | | private String rate; |
| | | private String rate; |
| | | |
| | | public String getRate() { |
| | | return rate; |
| | |
| | | public void setRate(String rate) { |
| | | this.rate = rate; |
| | | } |
| | | |
| | | //是否删除 0:未删除 1:删除 |
| | | private Integer delFlag; |
| | | |
| | | public Integer getDelFlag() { |
| | | return delFlag; |
| | | } |
| | | |
| | | public void setDelFlag(Integer delFlag) { |
| | | this.delFlag = delFlag; |
| | | } |
| | | |
| | | } |