refactor(bps): 重构项目目录结构和代码
- 更新包名从 com.mzaxd.noodles 到 com.mzaxd.bps - 删除了一些未使用的类和接口 - 调整了部分代码结构以适应新的项目需求
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.mzaxd.bps;
|
||||
|
||||
import org.mybatis.spring.annotation.MapperScan;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.scheduling.annotation.EnableScheduling;
|
||||
|
||||
/**
|
||||
* @author root
|
||||
*/
|
||||
@SpringBootApplication
|
||||
@EnableScheduling
|
||||
@MapperScan("com.mzaxd.bps.mapper")
|
||||
public class BPSApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(BPSApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user