mirror of
https://github.com/dataease/dataease.git
synced 2026-05-14 21:12:33 +08:00
fix: [Bug] SQLServer 数据集导出按日期过滤无法导出数据 #16519
This commit is contained in:
@@ -5,6 +5,7 @@ import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
||||
import io.dataease.extensions.datasource.dto.DatasetTableFieldDTO;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
@@ -21,7 +22,16 @@ public class DatasetRowPermissionsTreeItem implements Serializable {
|
||||
|
||||
private String filterType;// 'logic' or 'enum'
|
||||
private String term;//'eq','not_eq','lt','le','gt','ge','in','not in','like','not like','null','not_null','empty','not_empty','between
|
||||
|
||||
public String getValue() {
|
||||
if (StringUtils.isNotEmpty(timeValue)) {
|
||||
return timeValue;
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
||||
private String value;// 'a'
|
||||
private String timeValue;// 'a'
|
||||
private List<String> enumValue;// ['a','b']
|
||||
|
||||
private DatasetRowPermissionsTreeObj subTree;
|
||||
|
||||
Reference in New Issue
Block a user