目录
项目介绍
技术栈
项目介绍
项目截图
搭建
代码截取
代码获取
项目介绍
近年由于疫情影响,线下教育行业受到较大冲击,因此线上教育培训有较好的发展势头,其中建筑行业考证培训是一个前景良好的发展方向,该行业不仅需要大量专业人才,同时行业证书也是含金量十足。为了弥补线下教育培训的空缺故开启本项目,以线上课程的方式助力广大立志在该行业取得成就的学员圆梦!
教育平台是一个知识付费在线学习平台项目,旨在为广大参加建筑行业考试(如一级建造师、二级建造师、造价工程师、消防工程师、监理工程师、咨询工程师、安全工程师等)的考生提供考前资讯和辅导,帮助广大考生了解考试的动向、考试时间、报名审核时间;提供一些相关的在线学习视频和模拟试题,以便能让广大考生顺利考证。
技术栈
SpringCloud
Mybatis-plus
ES
RabbitMQ
Redis
Vue
Element UI
MySQL
项目介绍
项目截图
搭建
代码截取
package com.qf.dledu.couponservice.controller;
import com.qf.dledu.couponservice.service.CouponService;
import com.qf.dledu.entity.ResultData;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
@RestController
@RequestMapping("/coupon")
public class CouponController {
@Resource
private CouponService couponService;
@GetMapping("/list/{userId}")
public ResultData get(@PathVariable Integer userId){
return couponService.findCouponByUserId(userId);
}
@GetMapping("/one/{id}")
public ResultData find(@PathVariable Integer id){
return couponService.findById(id);
}
@GetMapping("/rob")
public ResultData rob(Integer userId){
return couponService.grabCoupons(userId);
}
@GetMapping("/mycoupon/{userId}")
public ResultData my(@PathVariable Integer userId){
return couponService.findMyCoupon(userId);
}
}
代码获取
在我的资源里下载(免费),与文章标题一模一样。如需搭建视频50元一份,远程搭建+源码修改指导120元一次,非诚勿扰。