Commit 9ee17697 authored by zhangjianqian's avatar zhangjianqian

空判断,和超出判断

parent b291edfb
...@@ -18,6 +18,12 @@ public class Bx06Controller { ...@@ -18,6 +18,12 @@ public class Bx06Controller {
@PutMapping("/send") @PutMapping("/send")
public AjaxResult send (Bx06Vo bx06Vo)throws Exception public AjaxResult send (Bx06Vo bx06Vo)throws Exception
{ {
if(bx06Vo.getContents()==null||bx06Vo.getContents().length<1){
return AjaxResult.error("请至少发送一行数据");
}
if(bx06Vo.getContents().length>6){
return AjaxResult.error("最多一次发送6行数据");
}
LedserviceImpl.SendProgram(bx06Vo); LedserviceImpl.SendProgram(bx06Vo);
return AjaxResult.success(); return AjaxResult.success();
} }
......
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