mirror of
https://github.com/dataease/dataease.git
synced 2026-06-17 13:01:44 +08:00
feat(X-Pack): [数据填报]选项值的绑定,可以绑定拥有读数据权限的数据源表字段
This commit is contained in:
@@ -52,6 +52,11 @@ public class DefaultExtDDLProvider extends ExtDDLProvider {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String searchColumnData(String table, String column, String order) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String countSql(String table, List<TableField> formFields, String whereSql) {
|
||||
return null;
|
||||
|
||||
@@ -21,6 +21,8 @@ public abstract class ExtDDLProvider {
|
||||
|
||||
public abstract String searchSql(String table, List<TableField> formFields, String whereSql, long limit, long offset);
|
||||
|
||||
public abstract String searchColumnData(String table, String column, String order);
|
||||
|
||||
public abstract String countSql(String table, List<TableField> formFields, String whereSql);
|
||||
|
||||
public abstract String dropTableSql(String table);
|
||||
|
||||
Reference in New Issue
Block a user