修正调用目标字符串最大长度

This commit is contained in:
RuoYi
2020-09-13 12:05:26 +08:00
committed by 疯狂的狮子li
parent ca3c02d0e9
commit 249ca99e49

View File

@@ -88,7 +88,7 @@ public class SysJob extends BaseEntity implements Serializable
}
@NotBlank(message = "调用目标字符串不能为空")
@Size(min = 0, max = 1000, message = "调用目标字符串长度不能超过500个字符")
@Size(min = 0, max = 500, message = "调用目标字符串长度不能超过500个字符")
public String getInvokeTarget()
{
return invokeTarget;