feat(X-Pack): [数据填报]表单数据支持字段过滤查询

This commit is contained in:
ulleo
2025-02-13 18:23:44 +08:00
committed by dataeaseShu
parent 0e092ab66e
commit 870222c05d
30 changed files with 158 additions and 34 deletions

View File

@@ -26,5 +26,6 @@ public class TableField implements Serializable {
List<Object> value;
private int inCount;
private String term = "eq";
}

View File

@@ -19,6 +19,10 @@ public class TableFieldWithValue implements Serializable {
private String typeName;
private Integer type;
private String isDateTime;
private String dateFormat;
private String term = "eq";
public static TableFieldWithValue copy(TableFieldWithValue tableFieldWithValue) {
return new TableFieldWithValue()
.setValue(tableFieldWithValue.getValue())