forked from github/dataease
fix(X-Pack): 修复数据填报任务过滤数据下发会有NPE错误的问题
This commit is contained in:
parent
e1a809aa0b
commit
e9921fdb1c
2
de-xpack
2
de-xpack
@ -1 +1 @@
|
||||
Subproject commit e35f46852c16791387a3985c56f429088bf0ffe9
|
||||
Subproject commit e97268fa5666ebba702953d86be58a3ca34cf604
|
@ -0,0 +1,27 @@
|
||||
package io.dataease.api.xpack.dataFilling.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class FilterSetting implements Serializable {
|
||||
@Serial
|
||||
private static final long serialVersionUID = -3292560414617242094L;
|
||||
|
||||
private String column;
|
||||
private Object value;
|
||||
private List<String> valueList;
|
||||
private BigDecimal min;
|
||||
private BigDecimal max;
|
||||
private boolean number;
|
||||
private boolean date;
|
||||
private String dateType;
|
||||
private String filterType;
|
||||
private String term;
|
||||
private boolean multiple;
|
||||
private String type;
|
||||
}
|
Loading…
Reference in New Issue
Block a user