Commit 386061e8 authored by yanzg's avatar yanzg

默认日期格式的支持

parent 03c278e1
...@@ -162,6 +162,19 @@ public class SqlData { ...@@ -162,6 +162,19 @@ public class SqlData {
return null; return null;
} }
/**
* 设置所有字段自动
*
* @param auto 自动
* @return
*/
public SqlData setFieldAuto(boolean auto) {
for (SqlDataField sqlDataField : this.sqlDataFields) {
sqlDataField.setAuto(auto);
}
return this;
}
/** /**
* 按照一种类型添加SQL语句 * 按照一种类型添加SQL语句
* *
......
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