update - 调整中止流程时,原因字符长度限制
This commit is contained in:
parent
f0c1b53acc
commit
883db7ea30
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user