代码调整

This commit is contained in:
2023-03-16 10:05:53 +08:00
parent 3a1ea6f388
commit 93228bf1ec
10 changed files with 160 additions and 6 deletions

View File

@@ -0,0 +1,26 @@
package com.njcn.prepare;
import com.github.jeffreyning.mybatisplus.conf.EnableMPP;
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")
@EnableMPP
public class PrepareApplication {
public static void main(String[] args) {
SpringApplication.run(PrepareApplication.class,args);
}
}