REQ-3654: query查询接口添加参数控制是否过滤key/value

This commit is contained in:
yanglin 2025-02-10 20:25:19 +08:00
parent 49b64ad11a
commit 9a32996b93

View File

@ -78,6 +78,16 @@ public class PendingMessageQueryRequest implements ClientRequest, Serializable {
private Integer modelVersion;
/**
* 是否根据配置'是否显示在卡片上'过滤key/value
*/
private boolean isKeyValueDisplayOnCardAware = false;
/**
* 是否根据配置'是否显示在卡片上'过滤按钮
*/
private boolean isButtonDisplayOnCardAware = false;
@Override
public String toString() {
return JSON.toJSONString(this);