17 lines
620 B
Java
17 lines
620 B
Java
package com.cdzy.payment;
|
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
|
@EnableScheduling
|
|
@SpringBootApplication
|
|
@EnableFeignClients(basePackages = "com.ebike.feign")
|
|
@MapperScan("com.cdzy.payment.mapper")
|
|
public class EbikePaymentApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(EbikePaymentApplication.class, args);
|
|
}
|
|
} |