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.

14 lines
427 B

5 months ago
  1. package com.lh;
  2. import org.mybatis.spring.annotation.MapperScan;
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.SpringBootApplication;
  5. @MapperScan(basePackages = "com.lh.mapper")
  6. @SpringBootApplication
  7. public class CrowdfundingSystemApplication {
  8. public static void main(String[] args) {
  9. SpringApplication.run(CrowdfundingSystemApplication.class, args);
  10. }
  11. }