| | |
| | | import org.mybatis.spring.annotation.MapperScan; |
| | | import org.springframework.boot.SpringApplication; |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | import org.springframework.scheduling.annotation.EnableAsync; |
| | | import org.springframework.scheduling.annotation.EnableScheduling; |
| | | |
| | | /** |
| | | * 系统模块 |
| | | * |
| | | * @author ruoyi |
| | | */ |
| | | @EnableAsync |
| | | @EnableCustomConfig |
| | | @MapperScan({"com.ruoyi.goods.mapper"}) |
| | | @EnableCustomSwagger2 |
| | | @EnableRyFeignClients |
| | | @EnableScheduling |
| | | @SpringBootApplication |
| | | public class RuoYiGoodsApplication |
| | | { |