| | |
| | | import org.mybatis.spring.annotation.MapperScan; |
| | | import org.springframework.boot.SpringApplication; |
| | | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| | | import org.springframework.boot.web.servlet.ServletComponentScan; |
| | | import org.springframework.scheduling.annotation.EnableScheduling; |
| | | import org.springframework.transaction.annotation.EnableTransactionManagement; |
| | | |
| | | /** |
| | | * 账户模块 |
| | | * |
| | | * @author ruoyi |
| | | */ |
| | | @EnableCustomConfig |
| | |
| | | @SpringBootApplication |
| | | @EnableTransactionManagement//开启事务 |
| | | public class RuoYiDataInterchangeApplication { |
| | | public static void main(String[] args) { |
| | | SpringApplication.run(RuoYiDataInterchangeApplication.class, args); |
| | | System.out.println("(♥◠‿◠)ノ゙ 数据交互模块启动成功 ლ(´ڡ`ლ)゙ "); |
| | | } |
| | | |
| | | |
| | | public static void main(String[] args) { |
| | | SpringApplication.run(RuoYiDataInterchangeApplication.class, args); |
| | | System.out.println("(♥◠‿◠)ノ゙ 数据交互模块启动成功 ლ(´ڡ`ლ)゙ "); |
| | | } |
| | | } |