package com.op.technology; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import com.op.common.security.annotation.EnableCustomConfig; import com.op.common.security.annotation.EnableRyFeignClients; import com.op.common.swagger.annotation.EnableCustomSwagger2; /** * 生产工艺模块 * * @author OP */ @EnableCustomConfig @EnableCustomSwagger2 @EnableRyFeignClients @SpringBootApplication public class TechnologyApplication { public static void main(String[] args) { SpringApplication.run(TechnologyApplication.class, args); System.err.println("生产工艺服务启动成功\n" + " | | \r\n" + " ___ _ __ ______ ___ _ _ ___| |_ ___ _ __ ___ \r\n" + " / _ \\| '_ \\______/ __| | | / __| __/ _ \\ '_ ` _ \\ \r\n" + "| (_) | |_) | \\__ \\ |_| \\__ \\ || __/ | | | | |\r\n" + " \\___/| .__/ |___/\\__, |___/\\__\\___|_| |_| |_|\r\n" + " | | __/ | \r\n" + " |_| |___/ \r\n"); } }