package com.ycl.domain.vo;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* nongtou-project-java
|
*
|
* @author : zxl
|
* @date : 2025-12-11 14:00
|
**/
|
@Data
|
public class AuditHistoryVO {
|
|
|
/**
|
* 流程任务ID
|
*/
|
@ApiModelProperty(value = "流程任务ID")
|
private String taskId;
|
|
/**
|
* 任务key
|
*/
|
@ApiModelProperty(value = "任务key")
|
private String taskDefinitionKey;
|
|
/**
|
* 查看人ID
|
*/
|
@ApiModelProperty(value = "查看人ID")
|
private String viewer;
|
|
/**
|
* 提交人部门
|
*/
|
@ApiModelProperty(value = "提交人部门")
|
private String commitDept;
|
|
/**
|
* 审核类型(1:提交,2:审核,3:驳回,4:转交)
|
*/
|
@ApiModelProperty(value = "审核类型(1:提交,2:审核,3:驳回,4:转交)")
|
private String auditType;
|
|
/**
|
* 是否阅读(0:未读,1:已读)
|
*/
|
@ApiModelProperty(value = "是否阅读(0:未读,1:已读)")
|
private String isRead;
|
|
/**
|
* 业务ID(关联项目ID)
|
*/
|
@ApiModelProperty(value = "业务ID(关联项目ID)")
|
private String businessKey;
|
|
/**
|
* 业务表名称
|
*/
|
@ApiModelProperty(value = "业务表名称")
|
private String businessTable;
|
|
/**
|
* 内容(节点名称)
|
*/
|
@ApiModelProperty(value = "内容(节点名称)")
|
private String content;
|
|
/**
|
* 关联的项目名称(从t_project_info表关联)
|
*/
|
@ApiModelProperty(value = "项目名称")
|
private String projectName;
|
|
/**
|
* 审核类型中文描述(前端展示用,如:提交/审核/驳回/转交)
|
*/
|
@ApiModelProperty(value = "审核类型中文描述")
|
private String auditTypeDesc;
|
|
/**
|
* 是否阅读中文描述(前端展示用,如:未读/已读)
|
*/
|
@ApiModelProperty(value = "是否阅读中文描述")
|
private String isReadDesc;
|
}
|