Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
RuoYi Vue
Commits
9fccc7de
Commit
9fccc7de
authored
Sep 07, 2020
by
RuoYi
Browse files
修正调用目标字符串最大长度
parent
599be64f
Changes
1
Hide whitespace changes
Inline
Side-by-side
ruoyi-quartz/src/main/java/com/ruoyi/quartz/domain/SysJob.java
View file @
9fccc7de
...
...
@@ -88,7 +88,7 @@ public class SysJob extends BaseEntity implements Serializable
}
@NotBlank
(
message
=
"调用目标字符串不能为空"
)
@Size
(
min
=
0
,
max
=
10
00
,
message
=
"调用目标字符串长度不能超过500个字符"
)
@Size
(
min
=
0
,
max
=
5
00
,
message
=
"调用目标字符串长度不能超过500个字符"
)
public
String
getInvokeTarget
()
{
return
invokeTarget
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment