| | |
| | | import org.springframework.boot.SpringApplication; |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | import org.springframework.cloud.client.discovery.EnableDiscoveryClient; |
| | | import org.springframework.cloud.openfeign.EnableFeignClients; |
| | | import org.springframework.scheduling.annotation.EnableScheduling; |
| | | |
| | | @MapperScan("com.zy.**.mapper") |
| | | @EnableDiscoveryClient |
| | | @SpringBootApplication |
| | | @EnableScheduling |
| | | @EnableFeignClients(basePackages = "com.zy.acs.rpc") |
| | | public class ManagerBoot { |
| | | |
| | | public static void main(String[] args) { |