You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
739 B
24 lines
739 B
package com.iec.business;
|
|
|
|
import com.pig4cloud.pig.common.security.annotation.EnablePigResourceServer;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
|
|
/**
|
|
* @author zhoukaihong
|
|
* @version v1.0
|
|
* @className IecYyjhBusinessApplication
|
|
* @date 2024/12/9
|
|
* @description TODO
|
|
*/
|
|
@EnablePigResourceServer
|
|
@EnableAsync
|
|
@EnableDiscoveryClient
|
|
@SpringBootApplication
|
|
public class IecYyjhBusinessApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(IecYyjhBusinessApplication.class, args);
|
|
}
|
|
}
|