创建预处理模块

This commit is contained in:
2022-10-12 16:05:34 +08:00
parent edc41810de
commit c39259ca7f
5 changed files with 199 additions and 44 deletions

View File

@@ -0,0 +1,24 @@
package com.njcn.prepare;
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;
/**
* @author hongawen
* @version 1.0.0
* @date 2021年12月14日 20:33
*/
@Slf4j
@MapperScan("com.njcn.**.mapper")
@EnableFeignClients(basePackages = "com.njcn")
@SpringBootApplication(scanBasePackages = "com.njcn")
public class PrepareApplication {
public static void main(String[] args) {
SpringApplication.run(PrepareApplication.class,args);
}
}