2025-10-17 17:32:20 +08:00
|
|
|
package com.cdzy.payment;
|
|
|
|
|
|
|
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
|
|
|
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-24 10:09:53 +08:00
|
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
2025-10-17 17:32:20 +08:00
|
|
|
|
2025-10-24 10:09:53 +08:00
|
|
|
@EnableScheduling
|
2025-10-17 17:32:20 +08:00
|
|
|
@SpringBootApplication
|
2025-10-22 10:13:57 +08:00
|
|
|
@EnableFeignClients(basePackages = "com.ebike.feign")
|
|
|
|
|
@MapperScan("com.cdzy.payment.mapper")
|
2025-10-17 17:32:20 +08:00
|
|
|
public class EbikePaymentApplication {
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(EbikePaymentApplication.class, args);
|
|
|
|
|
}
|
|
|
|
|
}
|