fix: 电话报警通知逻辑修改。

This commit is contained in:
tianyongbao
2026-03-07 22:13:40 +08:00
parent 212e596237
commit 10cc7e75b3
14 changed files with 557 additions and 1294 deletions

View File

@@ -0,0 +1,14 @@
package com.intc.iot.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.intc.iot.domain.AquMapMessageWarnCallNotice;
import org.apache.ibatis.annotations.Mapper;
/**
* 报警消息与通知记录关联表 Mapper
*
* @author intc
*/
@Mapper
public interface AquMapMessageWarnCallNoticeMapper extends BaseMapper<AquMapMessageWarnCallNotice> {
}