123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- package com.ruoyi.branch.domain.approve;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import java.util.Date;
- import java.util.List;
- /**
- * 申请管理我的待办显示实体类
- *
- * @author ruoyi
- * @date 2021-02-23
- */
- public class DevTask {
- /** 待办任务ID */
- private String taskId;
- /** 待办任务name */
- private String taskName;
- /** 待办任务创建时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- private Date taskCreateTime;
- /** 待办任务结束时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- private Date taskEndTime;
- // /** 隐患申请对象 */
- // private Object approveObj;
- /** 流程ID */
- private String processId;
- /** 流程名称 */
- private String processName;
- /** 流程创建时间 */
- private Date processCreateTime;
- /** 业务键 */
- private String businessKey;
- // /** 隐患申请对象 */
- // private TApproveDanger tApprove;
- //
- // private Object approveObject;
- // /** 申请对象 */
- // private TApprove specApprove;
- // private TApproveSpecModify ApproveSpecModify;
- // private String apNo;
- // /** 事件申请对象 */
- // private TApproveAccident tApproveAccident;
- // /** 隐患申请状态 */
- // private String submitType;
- //
- /** 审批评论 */
- private String comment;
- //
- /** 流转办理人姓名 */
- private String userName;
- //
- // /** 执行人措施前url */
- // private String beforeUrl;
- //
- // /** 执行人措施前文件名称 */
- // private String beforeFilename;
- //
- // /** 执行人措施后url */
- // private String afterUrl;
- //
- // /** 执行人措施后文件名称 */
- // private String afterFilename;
- //
- // private List<TApproverFile> govFiles;
- private String condition;
- // @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
- // private Date govDate;
- // private TApplyOfflinevalve offlinevalve;
- //
- // private TApplySafetychange safetychange;
- // /** SAI开项申请对象 */
- // private TSaiApply SaiApply;
- // public TSaiApply getSaiApply() {
- // return SaiApply;
- // }
- //
- // public void setSaiApply(TSaiApply saiApply) {
- // SaiApply = saiApply;
- // }
- //
- // public TApplySafetychange getSafetychange() {
- // return safetychange;
- // }
- //
- // public void setSafetychange(TApplySafetychange safetychange) {
- // this.safetychange = safetychange;
- // }
- //
- // public TApplyOfflinevalve getOfflinevalve() {
- // return offlinevalve;
- // }
- //
- // public void setOfflinevalve(TApplyOfflinevalve offlinevalve) {
- // this.offlinevalve = offlinevalve;
- // }
- //
- // public TApproveSpecModify getApproveSpecModify() {
- // return ApproveSpecModify;
- // }
- //
- // public void setApproveSpecModify(TApproveSpecModify approveSpecModify) {
- // ApproveSpecModify = approveSpecModify;
- // }
- //
- // public Date getGovDate() {
- // return govDate;
- // }
- //
- // public void setGovDate(Date govDate) {
- // this.govDate = govDate;
- // }
- //
- // public List<TApproverFile> getGovFiles() {
- // return govFiles;
- // }
- //
- // public void setGovFiles(List<TApproverFile> govFiles) {
- // this.govFiles = govFiles;
- // }
- public String getCondition() {
- return condition;
- }
- public void setCondition(String condition) {
- this.condition = condition;
- }
- // public TApprove getSpecApprove() {
- // return specApprove;
- // }
- //
- // public void setSpecApprove(TApprove specApprove) {
- // this.specApprove = specApprove;
- // }
- //
- // public Object getApproveObject() {
- // return approveObject;
- // }
- //
- // public void setApproveObject(Object approveObject) {
- // this.approveObject = approveObject;
- // }
- //
- // public String getApNo() {
- // return apNo;
- // }
- //
- // public void setApNo(String apNo) {
- // this.apNo = apNo;
- // }
- public String getTaskId() {
- return taskId;
- }
- public void setTaskId(String taskId) {
- this.taskId = taskId;
- }
- public String getTaskName() {
- return taskName;
- }
- public void setTaskName(String taskName) {
- this.taskName = taskName;
- }
- public Date getTaskCreateTime() {
- return taskCreateTime;
- }
- public void setTaskCreateTime(Date taskCreateTime) {
- this.taskCreateTime = taskCreateTime;
- }
- public Date getTaskEndTime() {
- return taskEndTime;
- }
- public void setTaskEndTime(Date taskEndTime) {
- this.taskEndTime = taskEndTime;
- }
- public String getProcessId() {
- return processId;
- }
- public void setProcessId(String processId) {
- this.processId = processId;
- }
- public String getProcessName() {
- return processName;
- }
- public void setProcessName(String processName) {
- this.processName = processName;
- }
- public Date getProcessCreateTime() {
- return processCreateTime;
- }
- public void setProcessCreateTime(Date processCreateTime) {
- this.processCreateTime = processCreateTime;
- }
- public String getBusinessKey() {
- return businessKey;
- }
- public void setBusinessKey(String businessKey) {
- this.businessKey = businessKey;
- }
- // public TApproveDanger gettApprove() {
- // return tApprove;
- // }
- //
- // public void settApprove(TApproveDanger tApprove) {
- // this.tApprove = tApprove;
- // }
- //
- // public TApproveAccident gettApproveAccident() { return tApproveAccident; }
- //
- // public void settApproveAccident(TApproveAccident tApproveAccident) { this.tApproveAccident = tApproveAccident; }
- //
- // public String getSubmitType() {
- // return submitType;
- // }
- //
- // public void setSubmitType(String submitType) {
- // this.submitType = submitType;
- // }
- //
- public String getComment() { return comment; }
- public void setComment(String comment) { this.comment = comment; }
- //
- public String getUserName() { return userName; }
- public void setUserName(String userName) { this.userName = userName; }
- // public void setBeforeUrl(String beforeUrl) { this.beforeUrl = beforeUrl; }
- //
- // public String getBeforeUrl() { return beforeUrl; }
- // public void setBeforeFilename(String beforeFilename) { this.beforeFilename = beforeFilename; }
- //
- // public String getBeforeFilename() { return beforeFilename; }
- // public void setAfterUrl(String afterUrl) { this.afterUrl = afterUrl; }
- //
- // public String getAfterUrl() { return afterUrl; }
- // public void setAfterFilename(String afterFilename) { this.afterFilename = afterFilename; }
- //
- // public String getAfterFilename() { return afterFilename; }
- //
- // public Object getApproveObj() {
- // return approveObj;
- // }
- //
- // public void setApproveObj(Object approveObj) {
- // this.approveObj = approveObj;
- // }
- @Override
- public String toString() {
- return "DevTask{" +
- "taskId='" + taskId + '\'' +
- ", taskName='" + taskName + '\'' +
- ", taskCreateTime=" + taskCreateTime +
- ", taskEndTime=" + taskEndTime +
- ", processId='" + processId + '\'' +
- ", processName='" + processName + '\'' +
- ", processCreateTime=" + processCreateTime +
- ", businessKey='" + businessKey + '\'' +
- // ", tApprove=" + tApprove +
- // ", tApproveAccident=" + tApproveAccident +
- // ", submitType='" + submitType + '\'' +
- ", comment='" + comment + '\'' +
- ", userName='" + userName + '\'' +
- // ", beforeUrl='" + beforeUrl + '\'' +
- // ", beforeFilename='" + beforeFilename + '\'' +
- // ", afterUrl='" + afterUrl + '\'' +
- // ", afterFilename='" + afterFilename + '\'' +
- '}';
- }
- }
|