zhangfeng
2022-11-21 99968f83982943669af3829ea6bc3bbe745cada4
equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/entity/KeypointEquipmentInfo.java
@@ -1,14 +1,17 @@
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;
/**
 * 重点监管装置/设备 详细信息(KeypointEquipmentInfo)表实体类
 *
 * @author xurui
 * @since 2022-08-09 09:39:39
 * @since 2022-08-29 08:37:54
 */
@SuppressWarnings("serial")
@TableName("keypoint_equipment_info")
@@ -136,13 +139,13 @@
        this.responsibilityPersonName = responsibilityPersonName;
    }
    //装置部位分类 1:关键装置 2:重点部位
    private Integer partType;
    private Byte partType;
    public Integer getPartType() {
    public Byte getPartType() {
        return partType;
    }
    public void setPartType(Integer partType) {
    public void setPartType(Byte partType) {
        this.partType = partType;
    }
    //检查周期
@@ -205,7 +208,6 @@
    public void setScenePic(String scenePic) {
        this.scenePic = scenePic;
    }
    //备注
    private String memo;
@@ -216,4 +218,15 @@
    public void setMemo(String memo) {
        this.memo = memo;
    }
}
    //是否删除 0:未删除 1:删除
    private Integer delFlag;
    public Integer getDelFlag() {
        return delFlag;
    }
    public void setDelFlag(Integer delFlag) {
        this.delFlag = delFlag;
    }
}