chenlu
2025-12-10 d5055b7870d0406f9b00d429cb47d2bfb79b902c
north-glass-erp/src/main/java/com/example/erp/ErpApplication.java
@@ -3,11 +3,13 @@
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.transaction.annotation.EnableTransactionManagement;
//springboot 启动入口
@SpringBootApplication
@EnableCaching
@EnableScheduling
@EnableTransactionManagement//事务注解
//@Transactional//在service里面有多表操作,开启事务注解
public class ErpApplication {