Files
aida-seller/src/main/java/com/aida/seller/AidaSellerApplication.java

22 lines
779 B
Java
Raw Normal View History

2026-04-21 10:25:39 +08:00
package com.aida.seller;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.context.annotation.ComponentScan;
2026-04-21 10:25:39 +08:00
@SpringBootApplication
@MapperScan("com.aida.seller.module.*.mapper")
@EnableFeignClients
@EnableDiscoveryClient
@ComponentScan(basePackages = "com.aida.seller")
2026-04-21 10:25:39 +08:00
public class AidaSellerApplication {
public static void main(String[] args) {
SpringApplication.run(AidaSellerApplication.class, args);
System.out.println("AidaSellerApplication 启动成功.");
}
}