update - 调整中止流程时,原因字符长度限制

This commit is contained in:
wangli 2024-05-07 09:43:44 +08:00
parent f0c1b53acc
commit 883db7ea30

View File

@ -36,6 +36,6 @@ public class BpmnProcessInstanceAbortDTO {
*/ */
@ApiModelProperty(value = "中止原因") @ApiModelProperty(value = "中止原因")
@NotBlank(message = "中止原因不能为空") @NotBlank(message = "中止原因不能为空")
@Length(max = 15, message = "中止原因长度不能超过 15 个字符") @Length(max = 100, message = "中止原因长度不能超过 100 个字符")
private String reason; private String reason;
} }