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;
|
|
}
|