2026-04-23 11:59:31 +08:00
|
|
|
package com.labelsys.backend;
|
|
|
|
|
|
|
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2026-04-27 10:27:57 +08:00
|
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
2026-04-23 11:59:31 +08:00
|
|
|
|
|
|
|
|
@SpringBootApplication
|
|
|
|
|
@MapperScan("com.labelsys.backend.mapper")
|
2026-04-27 10:27:57 +08:00
|
|
|
@EnableScheduling
|
2026-04-23 11:59:31 +08:00
|
|
|
public class LabelsysBackendApplication {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(LabelsysBackendApplication.class, args);
|
|
|
|
|
}
|
|
|
|
|
}
|