2025-08-23 13:27:32 +08:00
|
|
|
package com.mini.capi;
|
|
|
|
|
|
|
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2025-08-24 17:03:42 +08:00
|
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
2025-08-23 13:27:32 +08:00
|
|
|
|
2025-08-24 17:03:42 +08:00
|
|
|
@EnableScheduling
|
2025-08-23 13:27:32 +08:00
|
|
|
@SpringBootApplication
|
|
|
|
|
@MapperScan("com.mini.capi.biz.mapper")
|
|
|
|
|
public class CApiApplication {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(CApiApplication.class, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|