Commit 2a6fb6bd authored by yanzg's avatar yanzg

常规BUG的修改

parent b13dd8e8
......@@ -224,7 +224,7 @@ public class TableStruct {
*/
private TableFieldVo getFieldAction(int type) {
List<TableFieldVo> list = getFieldActionList(type);
return list.isEmpty() ? list.get(0) : null;
return !list.isEmpty() ? list.get(0) : null;
}
/**
......
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