Commit c4808345 by 袁伟铭

1.0.0

parent 47d93402
......@@ -108,7 +108,8 @@ public abstract class PagingUtils {
int index = 0;
for (ISqlSegment iSqlSegment : normal) {
if (index % 4 == 0) {
fields.add(StrUtil.toCamelCase(iSqlSegment.getSqlSegment()));
String field = StrUtil.toCamelCase(iSqlSegment.getSqlSegment());
fields.add(field);
}
index++;
}
......
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