yudao-module-iot/yudao-module-iot-biz/src/main/java/cn/iocoder/yudao/module/iot/dal/mysql/rule/IotDataRuleMapper.java
@@ -13,7 +13,7 @@ /** * IoT 数据流转规则 Mapper * * @author 芋道源码 * @author 超级管理员 */ @Mapper public interface IotDataRuleMapper extends BaseMapperX<IotDataRuleDO> { @@ -28,7 +28,7 @@ default List<IotDataRuleDO> selectListBySinkId(Long sinkId) { return selectList(new LambdaQueryWrapperX<IotDataRuleDO>() .apply(MyBatisUtils.findInSet("sink_ids", sinkId))); .apply(MyBatisUtils.findInSet("sink_ids"), sinkId)); } default List<IotDataRuleDO> selectListByStatus(Integer status) { @@ -39,4 +39,4 @@ return selectOne(IotDataRuleDO::getName, name); } } }