| | |
| | | package com.ruoyi.doublePrevention.entity;
|
| | |
|
| | | import com.baomidou.mybatisplus.annotation.IdType;
|
| | | import com.baomidou.mybatisplus.annotation.TableId;
|
| | | import com.baomidou.mybatisplus.annotation.TableName;
|
| | |
|
| | | import java.util.Date;
|
| | | import java.io.Serializable;
|
| | |
|
| | | /**
|
| | | * (RiskOldInfo)实体类
|
| | | *
|
| | | * @author makejava
|
| | | * @since 2023-03-20 15:33:46
|
| | | */
|
| | | @TableName("risk_old_info")
|
| | | public class RiskOldInfo implements Serializable {
|
| | | private static final long serialVersionUID = -61793617513430361L;
|
| | |
|
| | | @TableId(value = "id" , type = IdType.AUTO)
|
| | | private Long id;
|
| | | /**
|
| | | * 2上报人部门
|
| | | */
|
| | | private String reportDep;
|
| | | /**
|
| | | * 3上报人职务
|
| | | */
|
| | | private String reportPeopleJob;
|
| | | /**
|
| | | * 4上报人
|
| | | */
|
| | | private String reportPeople;
|
| | | /**
|
| | | * 5发现人
|
| | | */
|
| | | private String findPeople;
|
| | | /**
|
| | | * 6发现时间
|
| | | */
|
| | | private Date findTime;
|
| | | /**
|
| | | * 7隐患内容
|
| | | */
|
| | | private String riskDesc;
|
| | | /**
|
| | | * 8隐患位置
|
| | | */
|
| | | private String riskSite;
|
| | | /**
|
| | | * 9隐患类型
|
| | | */
|
| | | private String riskType;
|
| | | /**
|
| | | * 10隐患级别
|
| | | */
|
| | | private String riskLevel;
|
| | | /**
|
| | | * 11隐患所在部门
|
| | | */
|
| | | private String riskDep;
|
| | | /**
|
| | | * 12检查类型
|
| | | */
|
| | | private String checkType;
|
| | | /**
|
| | | * 13专业
|
| | | */
|
| | | private String major;
|
| | | /**
|
| | | * 14责任人部门
|
| | | */
|
| | | private String liabilityDep;
|
| | | /**
|
| | | * 15责任人
|
| | | */
|
| | | private String liabilityPeople;
|
| | | /**
|
| | | * 16责任人职务
|
| | | */
|
| | | private String liabilityPeopleJob;
|
| | | /**
|
| | | * 17整改时间
|
| | | */
|
| | | private Date rectifyTime;
|
| | | /**
|
| | | * 18允许延期时间
|
| | | */
|
| | | private Date rectifyTimeout;
|
| | | /**
|
| | | * 19负责人部门
|
| | | */
|
| | | private String leadDep;
|
| | | /**
|
| | | * 20负责人职务
|
| | | */
|
| | | private String leadJob;
|
| | | /**
|
| | | * 21整改人部门
|
| | | */
|
| | | private String rectifyDep;
|
| | | /**
|
| | | * 22整改人职务
|
| | | */
|
| | | private String rectifyPeopleJob;
|
| | | /**
|
| | | * 23整改人
|
| | | */
|
| | | private String rectifyPeople;
|
| | | /**
|
| | | * 24整改措施
|
| | | */
|
| | | private String rectifyMeasure;
|
| | | /**
|
| | | * 25整改开始时间
|
| | | */
|
| | | private Date rectifyStartTime;
|
| | | /**
|
| | | * 26整改完成时间
|
| | | */
|
| | | private Date rectifyFinishTime;
|
| | | /**
|
| | | * 27整改情况
|
| | | */
|
| | | private String rectifyDesc;
|
| | | /**
|
| | | * 28资金
|
| | | */
|
| | | private Double cost;
|
| | | /**
|
| | | * 29预案
|
| | | */
|
| | | private String plan;
|
| | | /**
|
| | | * 30防范措施
|
| | | */
|
| | | private String precautionMeasure;
|
| | | /**
|
| | | * 31验收时间
|
| | | */
|
| | | private Date acceptTime;
|
| | | /**
|
| | | * 32验收说明
|
| | | */
|
| | | private String acceptDesc;
|
| | | /**
|
| | | * 33验收部门
|
| | | */
|
| | | private String acceptDep;
|
| | | /**
|
| | | * 34验收人
|
| | | */
|
| | | private String acceptPeople;
|
| | | /**
|
| | | * 35验收人职务
|
| | | */
|
| | | private String acceptPeopleJob;
|
| | | /**
|
| | | * 36销号人部门
|
| | | */
|
| | | private String cancelDep;
|
| | | /**
|
| | | * 37销号人
|
| | | */
|
| | | private String cancelPeople;
|
| | | /**
|
| | | * 38销号人职务
|
| | | */
|
| | | private String cancelPeopleJob;
|
| | | /**
|
| | | * 39延期申请人
|
| | | */
|
| | | private String applyPeople;
|
| | | /**
|
| | | * 40申请时间
|
| | | */
|
| | | private Date applyTime;
|
| | | /**
|
| | | * 41申请理由
|
| | | */
|
| | | private String applyDesc;
|
| | | /**
|
| | | * 42申请-备注
|
| | | */
|
| | | private String applyNote;
|
| | | /**
|
| | | * 43申请延期时间
|
| | | */
|
| | | private Date applyTimeoutTime;
|
| | | /**
|
| | | * 44申请处理人
|
| | | */
|
| | | private String applyDealPeople;
|
| | | /**
|
| | | * 45申请处理时间
|
| | | */
|
| | | private Date appleDealTime;
|
| | | /**
|
| | | * 46流转责任部门
|
| | | */
|
| | | private String exchangeLeadDep;
|
| | | /**
|
| | | * 47流转责任人
|
| | | */
|
| | | private String exchangeLeadPeople;
|
| | | /**
|
| | | * 48流转责任人职务
|
| | | */
|
| | | private String exchangeLeadPeopleJob;
|
| | | /**
|
| | | * 49流转备注
|
| | | */
|
| | | private String exchangeDesc;
|
| | |
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public String getReportDep() {
|
| | | return reportDep;
|
| | | }
|
| | |
|
| | | public void setReportDep(String reportDep) {
|
| | | this.reportDep = reportDep;
|
| | | }
|
| | |
|
| | | public String getReportPeopleJob() {
|
| | | return reportPeopleJob;
|
| | | }
|
| | |
|
| | | public void setReportPeopleJob(String reportPeopleJob) {
|
| | | this.reportPeopleJob = reportPeopleJob;
|
| | | }
|
| | |
|
| | | public String getReportPeople() {
|
| | | return reportPeople;
|
| | | }
|
| | |
|
| | | public void setReportPeople(String reportPeople) {
|
| | | this.reportPeople = reportPeople;
|
| | | }
|
| | |
|
| | | public String getFindPeople() {
|
| | | return findPeople;
|
| | | }
|
| | |
|
| | | public void setFindPeople(String findPeople) {
|
| | | this.findPeople = findPeople;
|
| | | }
|
| | |
|
| | | public Date getFindTime() {
|
| | | return findTime;
|
| | | }
|
| | |
|
| | | public void setFindTime(Date findTime) {
|
| | | this.findTime = findTime;
|
| | | }
|
| | |
|
| | | public String getRiskDesc() {
|
| | | return riskDesc;
|
| | | }
|
| | |
|
| | | public void setRiskDesc(String riskDesc) {
|
| | | this.riskDesc = riskDesc;
|
| | | }
|
| | |
|
| | | public String getRiskSite() {
|
| | | return riskSite;
|
| | | }
|
| | |
|
| | | public void setRiskSite(String riskSite) {
|
| | | this.riskSite = riskSite;
|
| | | }
|
| | |
|
| | | public String getRiskType() {
|
| | | return riskType;
|
| | | }
|
| | |
|
| | | public void setRiskType(String riskType) {
|
| | | this.riskType = riskType;
|
| | | }
|
| | |
|
| | | public String getRiskLevel() {
|
| | | return riskLevel;
|
| | | }
|
| | |
|
| | | public void setRiskLevel(String riskLevel) {
|
| | | this.riskLevel = riskLevel;
|
| | | }
|
| | |
|
| | | public String getRiskDep() {
|
| | | return riskDep;
|
| | | }
|
| | |
|
| | | public void setRiskDep(String riskDep) {
|
| | | this.riskDep = riskDep;
|
| | | }
|
| | |
|
| | | public String getCheckType() {
|
| | | return checkType;
|
| | | }
|
| | |
|
| | | public void setCheckType(String checkType) {
|
| | | this.checkType = checkType;
|
| | | }
|
| | |
|
| | | public String getMajor() {
|
| | | return major;
|
| | | }
|
| | |
|
| | | public void setMajor(String major) {
|
| | | this.major = major;
|
| | | }
|
| | |
|
| | | public String getLiabilityDep() {
|
| | | return liabilityDep;
|
| | | }
|
| | |
|
| | | public void setLiabilityDep(String liabilityDep) {
|
| | | this.liabilityDep = liabilityDep;
|
| | | }
|
| | |
|
| | | public String getLiabilityPeople() {
|
| | | return liabilityPeople;
|
| | | }
|
| | |
|
| | | public void setLiabilityPeople(String liabilityPeople) {
|
| | | this.liabilityPeople = liabilityPeople;
|
| | | }
|
| | |
|
| | | public String getLiabilityPeopleJob() {
|
| | | return liabilityPeopleJob;
|
| | | }
|
| | |
|
| | | public void setLiabilityPeopleJob(String liabilityPeopleJob) {
|
| | | this.liabilityPeopleJob = liabilityPeopleJob;
|
| | | }
|
| | |
|
| | | public Date getRectifyTime() {
|
| | | return rectifyTime;
|
| | | }
|
| | |
|
| | | public void setRectifyTime(Date rectifyTime) {
|
| | | this.rectifyTime = rectifyTime;
|
| | | }
|
| | |
|
| | | public Date getRectifyTimeout() {
|
| | | return rectifyTimeout;
|
| | | }
|
| | |
|
| | | public void setRectifyTimeout(Date rectifyTimeout) {
|
| | | this.rectifyTimeout = rectifyTimeout;
|
| | | }
|
| | |
|
| | | public String getLeadDep() {
|
| | | return leadDep;
|
| | | }
|
| | |
|
| | | public void setLeadDep(String leadDep) {
|
| | | this.leadDep = leadDep;
|
| | | }
|
| | |
|
| | | public String getLeadJob() {
|
| | | return leadJob;
|
| | | }
|
| | |
|
| | | public void setLeadJob(String leadJob) {
|
| | | this.leadJob = leadJob;
|
| | | }
|
| | |
|
| | | public String getRectifyDep() {
|
| | | return rectifyDep;
|
| | | }
|
| | |
|
| | | public void setRectifyDep(String rectifyDep) {
|
| | | this.rectifyDep = rectifyDep;
|
| | | }
|
| | |
|
| | | public String getRectifyPeopleJob() {
|
| | | return rectifyPeopleJob;
|
| | | }
|
| | |
|
| | | public void setRectifyPeopleJob(String rectifyPeopleJob) {
|
| | | this.rectifyPeopleJob = rectifyPeopleJob;
|
| | | }
|
| | |
|
| | | public String getRectifyPeople() {
|
| | | return rectifyPeople;
|
| | | }
|
| | |
|
| | | public void setRectifyPeople(String rectifyPeople) {
|
| | | this.rectifyPeople = rectifyPeople;
|
| | | }
|
| | |
|
| | | public String getRectifyMeasure() {
|
| | | return rectifyMeasure;
|
| | | }
|
| | |
|
| | | public void setRectifyMeasure(String rectifyMeasure) {
|
| | | this.rectifyMeasure = rectifyMeasure;
|
| | | }
|
| | |
|
| | | public Date getRectifyStartTime() {
|
| | | return rectifyStartTime;
|
| | | }
|
| | |
|
| | | public void setRectifyStartTime(Date rectifyStartTime) {
|
| | | this.rectifyStartTime = rectifyStartTime;
|
| | | }
|
| | |
|
| | | public Date getRectifyFinishTime() {
|
| | | return rectifyFinishTime;
|
| | | }
|
| | |
|
| | | public void setRectifyFinishTime(Date rectifyFinishTime) {
|
| | | this.rectifyFinishTime = rectifyFinishTime;
|
| | | }
|
| | |
|
| | | public String getRectifyDesc() {
|
| | | return rectifyDesc;
|
| | | }
|
| | |
|
| | | public void setRectifyDesc(String rectifyDesc) {
|
| | | this.rectifyDesc = rectifyDesc;
|
| | | }
|
| | |
|
| | | public Double getCost() {
|
| | | return cost;
|
| | | }
|
| | |
|
| | | public void setCost(Double cost) {
|
| | | this.cost = cost;
|
| | | }
|
| | |
|
| | | public String getPlan() {
|
| | | return plan;
|
| | | }
|
| | |
|
| | | public void setPlan(String plan) {
|
| | | this.plan = plan;
|
| | | }
|
| | |
|
| | | public String getPrecautionMeasure() {
|
| | | return precautionMeasure;
|
| | | }
|
| | |
|
| | | public void setPrecautionMeasure(String precautionMeasure) {
|
| | | this.precautionMeasure = precautionMeasure;
|
| | | }
|
| | |
|
| | | public Date getAcceptTime() {
|
| | | return acceptTime;
|
| | | }
|
| | |
|
| | | public void setAcceptTime(Date acceptTime) {
|
| | | this.acceptTime = acceptTime;
|
| | | }
|
| | |
|
| | | public String getAcceptDesc() {
|
| | | return acceptDesc;
|
| | | }
|
| | |
|
| | | public void setAcceptDesc(String acceptDesc) {
|
| | | this.acceptDesc = acceptDesc;
|
| | | }
|
| | |
|
| | | public String getAcceptDep() {
|
| | | return acceptDep;
|
| | | }
|
| | |
|
| | | public void setAcceptDep(String acceptDep) {
|
| | | this.acceptDep = acceptDep;
|
| | | }
|
| | |
|
| | | public String getAcceptPeople() {
|
| | | return acceptPeople;
|
| | | }
|
| | |
|
| | | public void setAcceptPeople(String acceptPeople) {
|
| | | this.acceptPeople = acceptPeople;
|
| | | }
|
| | |
|
| | | public String getAcceptPeopleJob() {
|
| | | return acceptPeopleJob;
|
| | | }
|
| | |
|
| | | public void setAcceptPeopleJob(String acceptPeopleJob) {
|
| | | this.acceptPeopleJob = acceptPeopleJob;
|
| | | }
|
| | |
|
| | | public String getCancelDep() {
|
| | | return cancelDep;
|
| | | }
|
| | |
|
| | | public void setCancelDep(String cancelDep) {
|
| | | this.cancelDep = cancelDep;
|
| | | }
|
| | |
|
| | | public String getCancelPeople() {
|
| | | return cancelPeople;
|
| | | }
|
| | |
|
| | | public void setCancelPeople(String cancelPeople) {
|
| | | this.cancelPeople = cancelPeople;
|
| | | }
|
| | |
|
| | | public String getCancelPeopleJob() {
|
| | | return cancelPeopleJob;
|
| | | }
|
| | |
|
| | | public void setCancelPeopleJob(String cancelPeopleJob) {
|
| | | this.cancelPeopleJob = cancelPeopleJob;
|
| | | }
|
| | |
|
| | | public String getApplyPeople() {
|
| | | return applyPeople;
|
| | | }
|
| | |
|
| | | public void setApplyPeople(String applyPeople) {
|
| | | this.applyPeople = applyPeople;
|
| | | }
|
| | |
|
| | | public Date getApplyTime() {
|
| | | return applyTime;
|
| | | }
|
| | |
|
| | | public void setApplyTime(Date applyTime) {
|
| | | this.applyTime = applyTime;
|
| | | }
|
| | |
|
| | | public String getApplyDesc() {
|
| | | return applyDesc;
|
| | | }
|
| | |
|
| | | public void setApplyDesc(String applyDesc) {
|
| | | this.applyDesc = applyDesc;
|
| | | }
|
| | |
|
| | | public String getApplyNote() {
|
| | | return applyNote;
|
| | | }
|
| | |
|
| | | public void setApplyNote(String applyNote) {
|
| | | this.applyNote = applyNote;
|
| | | }
|
| | |
|
| | | public Date getApplyTimeoutTime() {
|
| | | return applyTimeoutTime;
|
| | | }
|
| | |
|
| | | public void setApplyTimeoutTime(Date applyTimeoutTime) {
|
| | | this.applyTimeoutTime = applyTimeoutTime;
|
| | | }
|
| | |
|
| | | public String getApplyDealPeople() {
|
| | | return applyDealPeople;
|
| | | }
|
| | |
|
| | | public void setApplyDealPeople(String applyDealPeople) {
|
| | | this.applyDealPeople = applyDealPeople;
|
| | | }
|
| | |
|
| | | public Date getAppleDealTime() {
|
| | | return appleDealTime;
|
| | | }
|
| | |
|
| | | public void setAppleDealTime(Date appleDealTime) {
|
| | | this.appleDealTime = appleDealTime;
|
| | | }
|
| | |
|
| | | public String getExchangeLeadDep() {
|
| | | return exchangeLeadDep;
|
| | | }
|
| | |
|
| | | public void setExchangeLeadDep(String exchangeLeadDep) {
|
| | | this.exchangeLeadDep = exchangeLeadDep;
|
| | | }
|
| | |
|
| | | public String getExchangeLeadPeople() {
|
| | | return exchangeLeadPeople;
|
| | | }
|
| | |
|
| | | public void setExchangeLeadPeople(String exchangeLeadPeople) {
|
| | | this.exchangeLeadPeople = exchangeLeadPeople;
|
| | | }
|
| | |
|
| | | public String getExchangeLeadPeopleJob() {
|
| | | return exchangeLeadPeopleJob;
|
| | | }
|
| | |
|
| | | public void setExchangeLeadPeopleJob(String exchangeLeadPeopleJob) {
|
| | | this.exchangeLeadPeopleJob = exchangeLeadPeopleJob;
|
| | | }
|
| | |
|
| | | public String getExchangeDesc() {
|
| | | return exchangeDesc;
|
| | | }
|
| | |
|
| | | public void setExchangeDesc(String exchangeDesc) {
|
| | | this.exchangeDesc = exchangeDesc;
|
| | | }
|
| | | }
|
| | |
|
| | | package com.ruoyi.doublePrevention.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import java.util.Date; |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * (RiskOldInfo)实体类 |
| | | * |
| | | * @author makejava |
| | | * @since 2023-03-20 15:33:46 |
| | | */ |
| | | @TableName("risk_old_info") |
| | | public class RiskOldInfo implements Serializable { |
| | | private static final long serialVersionUID = -61793617513430361L; |
| | | |
| | | @TableId(value = "id" , type = IdType.AUTO) |
| | | private Long id; |
| | | /** |
| | | * 2上报人部门 |
| | | */ |
| | | private String reportDep; |
| | | /** |
| | | * 3上报人职务 |
| | | */ |
| | | private String reportPeopleJob; |
| | | /** |
| | | * 4上报人 |
| | | */ |
| | | private String reportPeople; |
| | | /** |
| | | * 5发现人 |
| | | */ |
| | | private String findPeople; |
| | | /** |
| | | * 6发现时间 |
| | | */ |
| | | private Date findTime; |
| | | /** |
| | | * 7隐患内容 |
| | | */ |
| | | private String riskDesc; |
| | | /** |
| | | * 8隐患位置 |
| | | */ |
| | | private String riskSite; |
| | | /** |
| | | * 9隐患类型 |
| | | */ |
| | | private String riskType; |
| | | /** |
| | | * 10隐患级别 |
| | | */ |
| | | private String riskLevel; |
| | | /** |
| | | * 11隐患所在部门 |
| | | */ |
| | | private String riskDep; |
| | | /** |
| | | * 12检查类型 |
| | | */ |
| | | private String checkType; |
| | | /** |
| | | * 13专业 |
| | | */ |
| | | private String major; |
| | | /** |
| | | * 14责任人部门 |
| | | */ |
| | | private String liabilityDep; |
| | | /** |
| | | * 15责任人 |
| | | */ |
| | | private String liabilityPeople; |
| | | /** |
| | | * 16责任人职务 |
| | | */ |
| | | private String liabilityPeopleJob; |
| | | /** |
| | | * 17整改时间 |
| | | */ |
| | | private Date rectifyTime; |
| | | /** |
| | | * 18允许延期时间 |
| | | */ |
| | | private Date rectifyTimeout; |
| | | /** |
| | | * 19负责人部门 |
| | | */ |
| | | private String leadDep; |
| | | /** |
| | | * 20负责人职务 |
| | | */ |
| | | private String leadJob; |
| | | /** |
| | | * 21整改人部门 |
| | | */ |
| | | private String rectifyDep; |
| | | /** |
| | | * 22整改人职务 |
| | | */ |
| | | private String rectifyPeopleJob; |
| | | /** |
| | | * 23整改人 |
| | | */ |
| | | private String rectifyPeople; |
| | | /** |
| | | * 24整改措施 |
| | | */ |
| | | private String rectifyMeasure; |
| | | /** |
| | | * 25整改开始时间 |
| | | */ |
| | | private Date rectifyStartTime; |
| | | /** |
| | | * 26整改完成时间 |
| | | */ |
| | | private Date rectifyFinishTime; |
| | | /** |
| | | * 27整改情况 |
| | | */ |
| | | private String rectifyDesc; |
| | | /** |
| | | * 28资金 |
| | | */ |
| | | private Double cost; |
| | | /** |
| | | * 29预案 |
| | | */ |
| | | private String plan; |
| | | /** |
| | | * 30防范措施 |
| | | */ |
| | | private String precautionMeasure; |
| | | /** |
| | | * 31验收时间 |
| | | */ |
| | | private Date acceptTime; |
| | | /** |
| | | * 32验收说明 |
| | | */ |
| | | private String acceptDesc; |
| | | /** |
| | | * 33验收部门 |
| | | */ |
| | | private String acceptDep; |
| | | /** |
| | | * 34验收人 |
| | | */ |
| | | private String acceptPeople; |
| | | /** |
| | | * 35验收人职务 |
| | | */ |
| | | private String acceptPeopleJob; |
| | | /** |
| | | * 36销号人部门 |
| | | */ |
| | | private String cancelDep; |
| | | /** |
| | | * 37销号人 |
| | | */ |
| | | private String cancelPeople; |
| | | /** |
| | | * 38销号人职务 |
| | | */ |
| | | private String cancelPeopleJob; |
| | | /** |
| | | * 39延期申请人 |
| | | */ |
| | | private String applyPeople; |
| | | /** |
| | | * 40申请时间 |
| | | */ |
| | | private Date applyTime; |
| | | /** |
| | | * 41申请理由 |
| | | */ |
| | | private String applyDesc; |
| | | /** |
| | | * 42申请-备注 |
| | | */ |
| | | private String applyNote; |
| | | /** |
| | | * 43申请延期时间 |
| | | */ |
| | | private Date applyTimeoutTime; |
| | | /** |
| | | * 44申请处理人 |
| | | */ |
| | | private String applyDealPeople; |
| | | /** |
| | | * 45申请处理时间 |
| | | */ |
| | | private Date appleDealTime; |
| | | /** |
| | | * 46流转责任部门 |
| | | */ |
| | | private String exchangeLeadDep; |
| | | /** |
| | | * 47流转责任人 |
| | | */ |
| | | private String exchangeLeadPeople; |
| | | /** |
| | | * 48流转责任人职务 |
| | | */ |
| | | private String exchangeLeadPeopleJob; |
| | | /** |
| | | * 49流转备注 |
| | | */ |
| | | private String exchangeDesc; |
| | | |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getReportDep() { |
| | | return reportDep; |
| | | } |
| | | |
| | | public void setReportDep(String reportDep) { |
| | | this.reportDep = reportDep; |
| | | } |
| | | |
| | | public String getReportPeopleJob() { |
| | | return reportPeopleJob; |
| | | } |
| | | |
| | | public void setReportPeopleJob(String reportPeopleJob) { |
| | | this.reportPeopleJob = reportPeopleJob; |
| | | } |
| | | |
| | | public String getReportPeople() { |
| | | return reportPeople; |
| | | } |
| | | |
| | | public void setReportPeople(String reportPeople) { |
| | | this.reportPeople = reportPeople; |
| | | } |
| | | |
| | | public String getFindPeople() { |
| | | return findPeople; |
| | | } |
| | | |
| | | public void setFindPeople(String findPeople) { |
| | | this.findPeople = findPeople; |
| | | } |
| | | |
| | | public Date getFindTime() { |
| | | return findTime; |
| | | } |
| | | |
| | | public void setFindTime(Date findTime) { |
| | | this.findTime = findTime; |
| | | } |
| | | |
| | | public String getRiskDesc() { |
| | | return riskDesc; |
| | | } |
| | | |
| | | public void setRiskDesc(String riskDesc) { |
| | | this.riskDesc = riskDesc; |
| | | } |
| | | |
| | | public String getRiskSite() { |
| | | return riskSite; |
| | | } |
| | | |
| | | public void setRiskSite(String riskSite) { |
| | | this.riskSite = riskSite; |
| | | } |
| | | |
| | | public String getRiskType() { |
| | | return riskType; |
| | | } |
| | | |
| | | public void setRiskType(String riskType) { |
| | | this.riskType = riskType; |
| | | } |
| | | |
| | | public String getRiskLevel() { |
| | | return riskLevel; |
| | | } |
| | | |
| | | public void setRiskLevel(String riskLevel) { |
| | | this.riskLevel = riskLevel; |
| | | } |
| | | |
| | | public String getRiskDep() { |
| | | return riskDep; |
| | | } |
| | | |
| | | public void setRiskDep(String riskDep) { |
| | | this.riskDep = riskDep; |
| | | } |
| | | |
| | | public String getCheckType() { |
| | | return checkType; |
| | | } |
| | | |
| | | public void setCheckType(String checkType) { |
| | | this.checkType = checkType; |
| | | } |
| | | |
| | | public String getMajor() { |
| | | return major; |
| | | } |
| | | |
| | | public void setMajor(String major) { |
| | | this.major = major; |
| | | } |
| | | |
| | | public String getLiabilityDep() { |
| | | return liabilityDep; |
| | | } |
| | | |
| | | public void setLiabilityDep(String liabilityDep) { |
| | | this.liabilityDep = liabilityDep; |
| | | } |
| | | |
| | | public String getLiabilityPeople() { |
| | | return liabilityPeople; |
| | | } |
| | | |
| | | public void setLiabilityPeople(String liabilityPeople) { |
| | | this.liabilityPeople = liabilityPeople; |
| | | } |
| | | |
| | | public String getLiabilityPeopleJob() { |
| | | return liabilityPeopleJob; |
| | | } |
| | | |
| | | public void setLiabilityPeopleJob(String liabilityPeopleJob) { |
| | | this.liabilityPeopleJob = liabilityPeopleJob; |
| | | } |
| | | |
| | | public Date getRectifyTime() { |
| | | return rectifyTime; |
| | | } |
| | | |
| | | public void setRectifyTime(Date rectifyTime) { |
| | | this.rectifyTime = rectifyTime; |
| | | } |
| | | |
| | | public Date getRectifyTimeout() { |
| | | return rectifyTimeout; |
| | | } |
| | | |
| | | public void setRectifyTimeout(Date rectifyTimeout) { |
| | | this.rectifyTimeout = rectifyTimeout; |
| | | } |
| | | |
| | | public String getLeadDep() { |
| | | return leadDep; |
| | | } |
| | | |
| | | public void setLeadDep(String leadDep) { |
| | | this.leadDep = leadDep; |
| | | } |
| | | |
| | | public String getLeadJob() { |
| | | return leadJob; |
| | | } |
| | | |
| | | public void setLeadJob(String leadJob) { |
| | | this.leadJob = leadJob; |
| | | } |
| | | |
| | | public String getRectifyDep() { |
| | | return rectifyDep; |
| | | } |
| | | |
| | | public void setRectifyDep(String rectifyDep) { |
| | | this.rectifyDep = rectifyDep; |
| | | } |
| | | |
| | | public String getRectifyPeopleJob() { |
| | | return rectifyPeopleJob; |
| | | } |
| | | |
| | | public void setRectifyPeopleJob(String rectifyPeopleJob) { |
| | | this.rectifyPeopleJob = rectifyPeopleJob; |
| | | } |
| | | |
| | | public String getRectifyPeople() { |
| | | return rectifyPeople; |
| | | } |
| | | |
| | | public void setRectifyPeople(String rectifyPeople) { |
| | | this.rectifyPeople = rectifyPeople; |
| | | } |
| | | |
| | | public String getRectifyMeasure() { |
| | | return rectifyMeasure; |
| | | } |
| | | |
| | | public void setRectifyMeasure(String rectifyMeasure) { |
| | | this.rectifyMeasure = rectifyMeasure; |
| | | } |
| | | |
| | | public Date getRectifyStartTime() { |
| | | return rectifyStartTime; |
| | | } |
| | | |
| | | public void setRectifyStartTime(Date rectifyStartTime) { |
| | | this.rectifyStartTime = rectifyStartTime; |
| | | } |
| | | |
| | | public Date getRectifyFinishTime() { |
| | | return rectifyFinishTime; |
| | | } |
| | | |
| | | public void setRectifyFinishTime(Date rectifyFinishTime) { |
| | | this.rectifyFinishTime = rectifyFinishTime; |
| | | } |
| | | |
| | | public String getRectifyDesc() { |
| | | return rectifyDesc; |
| | | } |
| | | |
| | | public void setRectifyDesc(String rectifyDesc) { |
| | | this.rectifyDesc = rectifyDesc; |
| | | } |
| | | |
| | | public Double getCost() { |
| | | return cost; |
| | | } |
| | | |
| | | public void setCost(Double cost) { |
| | | this.cost = cost; |
| | | } |
| | | |
| | | public String getPlan() { |
| | | return plan; |
| | | } |
| | | |
| | | public void setPlan(String plan) { |
| | | this.plan = plan; |
| | | } |
| | | |
| | | public String getPrecautionMeasure() { |
| | | return precautionMeasure; |
| | | } |
| | | |
| | | public void setPrecautionMeasure(String precautionMeasure) { |
| | | this.precautionMeasure = precautionMeasure; |
| | | } |
| | | |
| | | public Date getAcceptTime() { |
| | | return acceptTime; |
| | | } |
| | | |
| | | public void setAcceptTime(Date acceptTime) { |
| | | this.acceptTime = acceptTime; |
| | | } |
| | | |
| | | public String getAcceptDesc() { |
| | | return acceptDesc; |
| | | } |
| | | |
| | | public void setAcceptDesc(String acceptDesc) { |
| | | this.acceptDesc = acceptDesc; |
| | | } |
| | | |
| | | public String getAcceptDep() { |
| | | return acceptDep; |
| | | } |
| | | |
| | | public void setAcceptDep(String acceptDep) { |
| | | this.acceptDep = acceptDep; |
| | | } |
| | | |
| | | public String getAcceptPeople() { |
| | | return acceptPeople; |
| | | } |
| | | |
| | | public void setAcceptPeople(String acceptPeople) { |
| | | this.acceptPeople = acceptPeople; |
| | | } |
| | | |
| | | public String getAcceptPeopleJob() { |
| | | return acceptPeopleJob; |
| | | } |
| | | |
| | | public void setAcceptPeopleJob(String acceptPeopleJob) { |
| | | this.acceptPeopleJob = acceptPeopleJob; |
| | | } |
| | | |
| | | public String getCancelDep() { |
| | | return cancelDep; |
| | | } |
| | | |
| | | public void setCancelDep(String cancelDep) { |
| | | this.cancelDep = cancelDep; |
| | | } |
| | | |
| | | public String getCancelPeople() { |
| | | return cancelPeople; |
| | | } |
| | | |
| | | public void setCancelPeople(String cancelPeople) { |
| | | this.cancelPeople = cancelPeople; |
| | | } |
| | | |
| | | public String getCancelPeopleJob() { |
| | | return cancelPeopleJob; |
| | | } |
| | | |
| | | public void setCancelPeopleJob(String cancelPeopleJob) { |
| | | this.cancelPeopleJob = cancelPeopleJob; |
| | | } |
| | | |
| | | public String getApplyPeople() { |
| | | return applyPeople; |
| | | } |
| | | |
| | | public void setApplyPeople(String applyPeople) { |
| | | this.applyPeople = applyPeople; |
| | | } |
| | | |
| | | public Date getApplyTime() { |
| | | return applyTime; |
| | | } |
| | | |
| | | public void setApplyTime(Date applyTime) { |
| | | this.applyTime = applyTime; |
| | | } |
| | | |
| | | public String getApplyDesc() { |
| | | return applyDesc; |
| | | } |
| | | |
| | | public void setApplyDesc(String applyDesc) { |
| | | this.applyDesc = applyDesc; |
| | | } |
| | | |
| | | public String getApplyNote() { |
| | | return applyNote; |
| | | } |
| | | |
| | | public void setApplyNote(String applyNote) { |
| | | this.applyNote = applyNote; |
| | | } |
| | | |
| | | public Date getApplyTimeoutTime() { |
| | | return applyTimeoutTime; |
| | | } |
| | | |
| | | public void setApplyTimeoutTime(Date applyTimeoutTime) { |
| | | this.applyTimeoutTime = applyTimeoutTime; |
| | | } |
| | | |
| | | public String getApplyDealPeople() { |
| | | return applyDealPeople; |
| | | } |
| | | |
| | | public void setApplyDealPeople(String applyDealPeople) { |
| | | this.applyDealPeople = applyDealPeople; |
| | | } |
| | | |
| | | public Date getAppleDealTime() { |
| | | return appleDealTime; |
| | | } |
| | | |
| | | public void setAppleDealTime(Date appleDealTime) { |
| | | this.appleDealTime = appleDealTime; |
| | | } |
| | | |
| | | public String getExchangeLeadDep() { |
| | | return exchangeLeadDep; |
| | | } |
| | | |
| | | public void setExchangeLeadDep(String exchangeLeadDep) { |
| | | this.exchangeLeadDep = exchangeLeadDep; |
| | | } |
| | | |
| | | public String getExchangeLeadPeople() { |
| | | return exchangeLeadPeople; |
| | | } |
| | | |
| | | public void setExchangeLeadPeople(String exchangeLeadPeople) { |
| | | this.exchangeLeadPeople = exchangeLeadPeople; |
| | | } |
| | | |
| | | public String getExchangeLeadPeopleJob() { |
| | | return exchangeLeadPeopleJob; |
| | | } |
| | | |
| | | public void setExchangeLeadPeopleJob(String exchangeLeadPeopleJob) { |
| | | this.exchangeLeadPeopleJob = exchangeLeadPeopleJob; |
| | | } |
| | | |
| | | public String getExchangeDesc() { |
| | | return exchangeDesc; |
| | | } |
| | | |
| | | public void setExchangeDesc(String exchangeDesc) { |
| | | this.exchangeDesc = exchangeDesc; |
| | | } |
| | | } |
| | | |