【功能评审】Bpm:是否填写审批意见

This commit is contained in:
YunaiV 2025-01-19 18:27:50 +08:00
parent 89728fe6ff
commit 081e716e72
3 changed files with 4 additions and 4 deletions

View File

@ -63,7 +63,7 @@ public class BpmSimpleModelNodeVO {
@Schema(description = "是否需要签名", example = "false")
private Boolean signEnable;
@Schema(description = "审批意见", example = "false")
@Schema(description = "是否填写审批意见", example = "false")
private Boolean reasonRequire;
/**

View File

@ -14,7 +14,7 @@ public class BpmTaskApproveReqVO {
@NotEmpty(message = "任务编号不能为空")
private String id;
@Schema(description = "审批意见", requiredMode = Schema.RequiredMode.REQUIRED, example = "不错不错!")
@Schema(description = "审批意见", example = "不错不错!")
private String reason;
@Schema(description = "签名", example = "https://www.iocoder.cn/sign.png")

View File

@ -78,10 +78,10 @@ public class BpmTaskRespVO {
@Schema(description = "操作按钮设置值")
private Map<Integer, OperationButtonSetting> buttonsSetting;
@Schema(description = "是否需要签名")
@Schema(description = "是否需要签名", example = "false")
private Boolean signEnable;
@Schema(description = "审批意见")
@Schema(description = "是否填写审批意见", example = "false")
private Boolean reasonRequire;
@Data