2021-07-22 19:03:27 +08:00
|
|
|
package com.xhpc.payment;
|
|
|
|
|
|
2021-07-28 18:07:25 +08:00
|
|
|
import com.xhpc.common.security.annotation.EnableCustomConfig;
|
|
|
|
|
import com.xhpc.common.security.annotation.EnableRyFeignClients;
|
2021-07-22 19:03:27 +08:00
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
|
|
|
|
|
2021-07-24 18:07:51 +08:00
|
|
|
@EnableCustomConfig
|
2021-07-22 19:03:27 +08:00
|
|
|
@EnableRyFeignClients
|
|
|
|
|
@EnableFeignClients
|
|
|
|
|
@SpringBootApplication
|
|
|
|
|
@MapperScan("com.xhpc.payment.mapper")
|
|
|
|
|
public class PaymentApplication {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(PaymentApplication.class, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|