新增技术监督模块

This commit is contained in:
2022-11-10 18:30:54 +08:00
parent 0d959fe747
commit 94254f614f
9 changed files with 334 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
package com.njcn.process;
import lombok.extern.slf4j.Slf4j;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
/**
* pqs
*
* @author cdf
* @date 2022/11/10
*/
@Slf4j
@MapperScan("com.njcn.**.mapper")
@EnableFeignClients(basePackages = "com.njcn")
@SpringBootApplication(scanBasePackages = "com.njcn")
public class ProcessApplication {
public static void main(String[] args) {
SpringApplication.run(ProcessApplication.class, args);
}
}