123456789101112131415161718192021222324252627282930313233343536 |
- package com.qxgmat;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.boot.web.servlet.ServletComponentScan;
- import org.springframework.cache.annotation.EnableCaching;
- import org.springframework.context.annotation.Configuration;
- import org.springframework.scheduling.annotation.EnableAsync;
- import org.springframework.scheduling.annotation.EnableScheduling;
- import org.springframework.transaction.annotation.EnableTransactionManagement;
- @EnableScheduling
- @EnableCaching
- @EnableAsync
- @EnableTransactionManagement
- @SpringBootApplication(
- scanBasePackages = {"com.nuliji.*", "com.qxgmat.*", "com.qxgmat.data.*"}
- )
- @Configuration
- @ServletComponentScan
- public class Application {
- public static void main(String[] args) {
- SpringApplication.run(Application.class, args);
- }
- }
- // 服务:开通,服务权限验证,后台支付
- // 预习作业添加模式:用于主动发送用户
- // 课程与预习作业关系,分册进度
- // 模考做题次数,reset
- // 订单结构分析:服务、课程、数据都是商品
- // 购物车,订单
- // 练习列表,进度
- // 模考出题
|