WebConfig.java 426 Bytes
package com.diligrp.mqtt.web;

import org.mybatis.spring.annotation.MapperScan;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

/**
 * @Author: zhangmeiyang
 * @CreateTime: 2025-12-30 16:36
 * @Version: todo
 */
@Configuration
@ComponentScan(basePackages = "com.diligrp.mqtt.web")
@MapperScan("com.diligrp.mqtt.web.mapper")
public class WebConfig {
}