From 9ca0dc6e7833715b875cc9b6b91d5c497b2bae8b Mon Sep 17 00:00:00 2001 From: zf <1603559716@qq.com> Date: 星期三, 30 八月 2023 09:05:45 +0800 Subject: [PATCH] Merge branch 'master' of https://sinanoaq.cn:8888/r/hazardInvestigationSystem into zf --- src/main/java/com/gk/hotwork/Domain/SafetyFacilityProcessflow.java | 186 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 186 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/hotwork/Domain/SafetyFacilityProcessflow.java b/src/main/java/com/gk/hotwork/Domain/SafetyFacilityProcessflow.java new file mode 100644 index 0000000..9512bcd --- /dev/null +++ b/src/main/java/com/gk/hotwork/Domain/SafetyFacilityProcessflow.java @@ -0,0 +1,186 @@ +package com.gk.hotwork.Domain; + +import java.io.Serializable; +import java.util.Date; +import java.util.List; + +import org.springframework.data.annotation.Transient; + +import com.baomidou.mybatisplus.annotation.TableName; + +@TableName("safety_facility_processflow") +public class SafetyFacilityProcessflow implements Serializable { + /** + * + */ + private static final long serialVersionUID = 9099478058115190759L; + + /** 主键id id **/ + private Long id; + + /** 有效标识 valid_flag **/ + private Byte validFlag; + + /** 创建时间 create_time **/ + private Date createTime; + + /** 创建人 create_by **/ + private String createBy; + + /** 最新更新时间 update_time **/ + private Date updateTime; + + /** 处理时间 check_time **/ + private Date checkTime; + + /** 处理状态 progress_name **/ + private String progressName; + + /** 处理结果 result **/ + private String result; + + /** 处理反馈意见 resolution **/ + private String resolution; + + /** 处理人 process_by **/ + private String processBy; + + /** 耗时(分钟) take_time **/ + private Integer takeTime; + + /** 关联安全业务审查ID link_inspection_id **/ + private Long linkInspectionId; + + /** 专家姓名 expertName **/ + @Transient + private List<SafetyFacilityProcessflow> childFlow; + + @Transient + public List<SafetyFacilityProcessflow> getChildFlow() { + return childFlow; + } + + public void setChildFlow(List<SafetyFacilityProcessflow> childFlow) { + this.childFlow = childFlow; + } + + /** 主键id id **/ + public Long getId() { + return id; + } + + /** 主键id id **/ + public void setId(Long id) { + this.id = id; + } + + /** 有效标识 valid_flag **/ + public Byte getValidFlag() { + return validFlag; + } + + /** 有效标识 valid_flag **/ + public void setValidFlag(Byte validFlag) { + this.validFlag = validFlag; + } + + /** 创建时间 create_time **/ + public Date getCreateTime() { + return createTime; + } + + /** 创建时间 create_time **/ + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + /** 创建人 create_by **/ + public String getCreateBy() { + return createBy; + } + + /** 创建人 create_by **/ + public void setCreateBy(String createBy) { + this.createBy = createBy == null ? null : createBy.trim(); + } + + /** 最新更新时间 update_time **/ + public Date getUpdateTime() { + return updateTime; + } + + /** 最新更新时间 update_time **/ + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + } + + /** 处理时间 check_time **/ + public Date getCheckTime() { + return checkTime; + } + + /** 处理时间 check_time **/ + public void setCheckTime(Date checkTime) { + this.checkTime = checkTime; + } + + /** 处理状态 progress_name **/ + public String getProgressName() { + return progressName; + } + + /** 处理状态 progress_name **/ + public void setProgressName(String progressName) { + this.progressName = progressName == null ? null : progressName.trim(); + } + + /** 处理结果 result **/ + public String getResult() { + return result; + } + + /** 处理结果 result **/ + public void setResult(String result) { + this.result = result == null ? null : result.trim(); + } + + /** 处理反馈意见 resolution **/ + public String getResolution() { + return resolution; + } + + /** 处理反馈意见 resolution **/ + public void setResolution(String resolution) { + this.resolution = resolution == null ? null : resolution.trim(); + } + + /** 处理人 process_by **/ + public String getProcessBy() { + return processBy; + } + + /** 处理人 process_by **/ + public void setProcessBy(String processBy) { + this.processBy = processBy == null ? null : processBy.trim(); + } + + /** 耗时(分钟) take_time **/ + public Integer getTakeTime() { + return takeTime; + } + + /** 耗时(分钟) take_time **/ + public void setTakeTime(Integer takeTime) { + this.takeTime = takeTime; + } + + /** 安全业务审查ID link_inspection_id **/ + public Long getLinkInspectionId() { + return linkInspectionId; + } + + /** 安全业务审查ID link_inspection_id **/ + public void setLinkInspectionId(Long linkInspectionId) { + this.linkInspectionId = linkInspectionId; + } +} \ No newline at end of file -- Gitblit v1.9.2