feat(1.4.0-beta1): 场景添加回调配置

This commit is contained in:
opensnail 2025-02-16 23:28:46 +08:00
parent cc95bb43bb
commit 0216e02f31

View File

@ -68,4 +68,24 @@ public class SceneConfigRequestVO {
* 通知告警场景配置id列表 * 通知告警场景配置id列表
*/ */
private Set<Long> notifyIds; private Set<Long> notifyIds;
/**
* 回调状态 0不开启 1开启
*/
private Integer cbStatus;
/**
* 回调触发类型
*/
private Integer cbTriggerType;
/**
* 回调的最大执行次数
*/
private int cbMaxCount = 288;
/**
* 回调间隔时间
*/
private String cbTriggerInterval;
} }