diff --git a/ruoyi-modules/ruoyi-system/src/main/resources/mapper/system/EpsInitialTrafficDataMapper.xml b/ruoyi-modules/ruoyi-system/src/main/resources/mapper/system/EpsInitialTrafficDataMapper.xml index 4622bb1..93b7eb6 100644 --- a/ruoyi-modules/ruoyi-system/src/main/resources/mapper/system/EpsInitialTrafficDataMapper.xml +++ b/ruoyi-modules/ruoyi-system/src/main/resources/mapper/system/EpsInitialTrafficDataMapper.xml @@ -182,7 +182,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + + + and config_name like concat('%', #{configName}, '%') + and push_method = #{pushMethod} + and push_address = #{pushAddress} + and push_alarm_types = #{pushAlarmTypes} + and message_content = #{messageContent} + and contact_phones = #{contactPhones} + + + + + + + insert into rm_alarm_push_config + + config_name, + push_method, + push_address, + push_alarm_types, + message_content, + contact_phones, + create_time, + update_time, + create_by, + update_by, + + + #{configName}, + #{pushMethod}, + #{pushAddress}, + #{pushAlarmTypes}, + #{messageContent}, + #{contactPhones}, + #{createTime}, + #{updateTime}, + #{createBy}, + #{updateBy}, + + + + + update rm_alarm_push_config + + config_name = #{configName}, + push_method = #{pushMethod}, + push_address = #{pushAddress}, + push_alarm_types = #{pushAlarmTypes}, + message_content = #{messageContent}, + contact_phones = #{contactPhones}, + create_time = #{createTime}, + update_time = #{updateTime}, + create_by = #{createBy}, + update_by = #{updateBy}, + + where id = #{id} + + + + delete from rm_alarm_push_config where id = #{id} + + + + delete from rm_alarm_push_config where id in + + #{id} + + + \ No newline at end of file