123456789101112131415161718 |
- package com.fdkankan.mqcontroller.mapper;
- import com.fdkankan.mqcontroller.entity.MqQueueConfig;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author
- * @since 2024-04-02
- */
- @Mapper
- public interface IMqQueueConfigMapper extends BaseMapper<MqQueueConfig> {
- }
|