Commit 7fb3d068 by 蒋勇

d

parent a7d2d848
...@@ -41,6 +41,9 @@ class tmqueryCtl extends CtlBase { ...@@ -41,6 +41,9 @@ class tmqueryCtl extends CtlBase {
if (!pobj.actionType) { if (!pobj.actionType) {
return system.getResult(null, "actionType不能为空"); return system.getResult(null, "actionType不能为空");
} }
if (pobj.actionType.indexOf(";")>=0) {
return system.getResult(null, "非法参数");
}
if (!pobj.actionBody) { if (!pobj.actionBody) {
return system.getResult(null, "actionBody不能为空"); return system.getResult(null, "actionBody不能为空");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment