Skip to content

Commit

Permalink
修正调用目标字符串最大长度
Browse files Browse the repository at this point in the history
  • Loading branch information
yangzongzhuan committed Sep 7, 2020
1 parent 599be64 commit 9fccc7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public void setJobGroup(String jobGroup)
}

@NotBlank(message = "调用目标字符串不能为空")
@Size(min = 0, max = 1000, message = "调用目标字符串长度不能超过500个字符")
@Size(min = 0, max = 500, message = "调用目标字符串长度不能超过500个字符")
public String getInvokeTarget()
{
return invokeTarget;
Expand Down

0 comments on commit 9fccc7d

Please sign in to comment.