liriming
2024-12-05 a99834962622f6ca8a7f5e4e42581d35d6f59f8a
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.bpm.controller.admin.task.vo.cc;
H 2
3 import io.swagger.v3.oas.annotations.media.Schema;
4 import lombok.Data;
5
6 import java.time.LocalDateTime;
7
8 @Schema(description = "管理后台 - 流程实例抄送的分页 Item Response VO")
9 @Data
10 public class BpmProcessInstanceCopyRespVO {
11
12     @Schema(description = "抄送主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
13     private Long id;
14
15     @Schema(description = "发起人编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "888")
16     private Long startUserId;
17     @Schema(description = "发起人昵称", requiredMode = Schema.RequiredMode.REQUIRED, example = "平台")
18     private String startUserName;
19
20     @Schema(description = "流程实例编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "A233")
21     private String processInstanceId;
22     @Schema(description = "流程实例的名称")
23     private String processInstanceName;
24     @Schema(description = "流程实例的发起时间")
25     private LocalDateTime processInstanceStartTime;
26
27     @Schema(description = "发起抄送的任务编号")
28     private String taskId;
29     @Schema(description = "发起抄送的任务名称")
30     private String taskName;
31
32     @Schema(description = "抄送人")
33     private String creator;
34     @Schema(description = "抄送人昵称")
35     private String creatorName;
36
37     @Schema(description = "抄送时间")
38     private LocalDateTime createTime;
39
40 }