Add dict date (#1331)

This commit is contained in:
daikon
2024-07-02 18:46:05 +08:00
committed by GitHub
parent 78e023e955
commit 9cd352f146
3 changed files with 112 additions and 14 deletions

View File

@@ -1,5 +1,6 @@
package com.tencent.supersonic.headless.api.pojo;
import com.tencent.supersonic.common.pojo.DateConf;
import lombok.Data;
import java.util.ArrayList;
@@ -17,4 +18,5 @@ public class ItemValueConfig {
private List<String> whiteList = new ArrayList<>();
private List<String> ruleList = new ArrayList<>();
private Long limit;
private DateConf dateConf;
}