2025-10-14 13:59:25 +08:00
|
|
|
package com.cdzy.user;
|
|
|
|
|
|
2025-10-15 17:38:13 +08:00
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
2025-10-14 13:59:25 +08:00
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2025-10-22 10:13:57 +08:00
|
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
2025-10-14 13:59:25 +08:00
|
|
|
|
2025-10-22 10:13:57 +08:00
|
|
|
@EnableFeignClients(basePackages = "com.ebike.feign")
|
2025-10-15 17:38:13 +08:00
|
|
|
@MapperScan("com.cdzy.user.mapper")
|
2025-10-14 13:59:25 +08:00
|
|
|
@SpringBootApplication
|
|
|
|
|
public class EbikeUserApplication {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(EbikeUserApplication.class, args);
|
|
|
|
|
}
|
|
|
|
|
}
|