liu
2 天以前 e368ee0141cfc8d4e4001e225b9e4a9cc6a1e034
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package cn.iocoder.yudao.module.system.controller.admin.approval.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
import java.util.List;
 
@Schema(description = "管理后台 - 审批配置 Response VO")
@Data
public class ApprovalConfigRespVO {
 
    @Schema(description = "主键ID", example = "1")
    private Long id;
 
    @Schema(description = "业务类型编码", example = "purchase_plan_approve")
    private String bizType;
 
    @Schema(description = "业务类型名称", example = "采购计划审核")
    private String bizName;
 
    @Schema(description = "是否启用审批", example = "true")
    private Boolean approvalEnabled;
 
    @Schema(description = "审批人用户ID列表", example = "[1,2]")
    private List<Long> userIds;
 
    @Schema(description = "审批人姓名列表(冗余展示,避免前端再查用户)", example = "[\"张三\",\"李四\"]")
    private List<String> userNames;
 
    @Schema(description = "备注", example = "由采购部经理审核")
    private String remark;
 
    @Schema(description = "创建时间")
    private LocalDateTime createTime;
 
}