Commit 62d10903 authored by chenzhao's avatar chenzhao

平台任务实体类

parent 06e5a064
package com.yeejoin.amos.boot.biz.common.dto;
import lombok.Data;
import java.util.Date;
@Data
public class SystemCtlTaskModel extends BaseDto{
/**
* 任务名称
*/
private String taskName;
/**
* 任务标题
*/
private String taskTitle;
/**
* 任务编号
*/
private String taskCode;
/**
* 内容
*/
private String taskContent;
/**
* 描述
*/
private String taskDesc;
/**
* 任务类型
*/
private String taskType;
/**
* 任务类型label
*/
private String taskTypeLabel;
/**
* 关联id
*/
private String relationId;
/**
* 执行人用户ids
*/
private String executeUserIds;
/**
* 任务状态
*/
private Integer taskStatus;
/**
* 任务状态 (展示态)
*/
private String taskStatusLabel;
/**
* 发起人
*/
private String startUserId;
/**
* 发起人
*/
private String startUser;
/**
* 发起时间
*/
private Date startDate;
/**
* 结束人
*/
private String endUserId;
/**
* 结束时间
*/
private Date endDate;
/**
* 流程创建人(同recUserId)
*/
private String createUserId;
/**
* 流程创建时间
*/
private Date createDate;
/**
* 详情路径
*/
private String routePath;
private String agencyCode;
/**
* 任务来源
*/
private String taskSource;
/**
* 扩展字段
*/
private String extras;
/**
* 终端标识
*/
private String terminal;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment