期初数据后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BackendApplication.java 626B

1234567891011121314151617
  1. package com.example.backend;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.mybatis.spring.annotation.MapperScan;
  5. import org.springframework.context.annotation.ComponentScan;
  6. @SpringBootApplication
  7. @MapperScan({"com.example.backend.mapper", "com.example.backend.mapper.contract", "com.example.backend.pAndSExe.mapper", "com.example.backend.KcQcTiaozheng.mapper"})
  8. // 确保扫描整个包
  9. public class BackendApplication {
  10. public static void main(String[] args) {
  11. SpringApplication.run(BackendApplication.class, args);
  12. }
  13. }