Commit 2ce6dbaa authored by yanzg's avatar yanzg

默认日期格式的支持

parent 779497ce
......@@ -29,6 +29,13 @@ public interface SqlCond<T extends SqlCond> {
*/
int COND_TYPE_CODE_COND = 2;
/**
* 获取包含的字段
*
* @return
*/
List<String> getFields();
/**
* 获取字段值
*
......
......@@ -33,6 +33,16 @@ public abstract class SqlCondBase<T extends SqlCondBase> implements SqlCond<T> {
}
}
/**
* 获取包含的字段
*
* @return
*/
@Override
public List<String> getFields() {
return this.fields;
}
/**
* 获取字段值
*
......
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