| | |
| | | package com.ruoyi.web.controller.api; |
| | | |
| | | |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
| | | import com.ruoyi.common.annotation.Log; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import com.ruoyi.framework.web.service.TokenService; |
| | | import com.ruoyi.system.model.TSysEducationalInfo; |
| | | import com.ruoyi.system.query.TSysEducationalInfoQuery; |
| | | import com.ruoyi.system.service.TSysEducationalInfoService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @author xiaochen |
| | | * @since 2025-08-20 |
| | | */ |
| | | @Api(tags = "教育资讯") |
| | | @RestController |
| | | @RequestMapping("/t-sys-educational-info") |
| | | public class TSysEducationalInfoController { |
| | | |
| | | private final TSysEducationalInfoService sysEducationalInfoService; |
| | | private final TokenService tokenService; |
| | | @Autowired |
| | | public TSysEducationalInfoController(TSysEducationalInfoService sysEducationalInfoService, TokenService tokenService) { |
| | | this.sysEducationalInfoService = sysEducationalInfoService; |
| | | this.tokenService = tokenService; |
| | | } |
| | | |
| | | /** |
| | | * 获取教育资讯管理列表 |
| | | */ |
| | | @ApiOperation(value = "获取教育资讯分页列表") |
| | | @PostMapping(value = "/pageList") |
| | | public R<PageInfo<TSysEducationalInfo>> pageList(@RequestBody TSysEducationalInfoQuery query) { |
| | | Integer roleType = tokenService.getLoginUser().getUser().getRoleType(); |
| | | if(roleType == 5){ |
| | | query.setRoleType(roleType); |
| | | } |
| | | return R.ok(sysEducationalInfoService.pageList(query)); |
| | | } |
| | | |
| | | /** |
| | | * 获取教育资讯管理列表 |
| | | */ |
| | | @ApiOperation(value = "获取教育资讯列表") |
| | | @PostMapping(value = "/list") |
| | | public R<List<TSysEducationalInfo>> list() { |
| | | return R.ok(sysEducationalInfoService.list(Wrappers.lambdaQuery(TSysEducationalInfo.class).orderByDesc(TSysEducationalInfo::getCreateTime))); |
| | | } |
| | | |
| | | /** |
| | | * 添加教育资讯管理 |
| | | */ |
| | | @Log(title = "教育资讯信息-新增教育资讯", businessType = BusinessType.INSERT) |
| | | @ApiOperation(value = "添加教育资讯") |
| | | @PostMapping(value = "/add") |
| | | public R<Boolean> add(@Validated @RequestBody TSysEducationalInfo dto) { |
| | | return R.ok(sysEducationalInfoService.save(dto)); |
| | | } |
| | | |
| | | /** |
| | | * 修改教育资讯 |
| | | */ |
| | | @Log(title = "教育资讯信息-修改教育资讯", businessType = BusinessType.UPDATE) |
| | | @ApiOperation(value = "修改教育资讯") |
| | | @PostMapping(value = "/update") |
| | | public R<Boolean> update(@Validated @RequestBody TSysEducationalInfo dto) { |
| | | return R.ok(sysEducationalInfoService.updateById(dto)); |
| | | } |
| | | |
| | | /** |
| | | * 查看教育资讯详情 |
| | | */ |
| | | @ApiOperation(value = "查看教育资讯详情") |
| | | @GetMapping(value = "/getDetailById") |
| | | public R<TSysEducationalInfo> getDetailById(@RequestParam String id) { |
| | | return R.ok(sysEducationalInfoService.getById(id)); |
| | | } |
| | | |
| | | /** |
| | | * 删除教育资讯 |
| | | */ |
| | | @Log(title = "教育资讯信息-删除教育资讯", businessType = BusinessType.DELETE) |
| | | @ApiOperation(value = "删除教育资讯") |
| | | @DeleteMapping(value = "/deleteById") |
| | | public R<Boolean> deleteById(@RequestParam String id) { |
| | | return R.ok(sysEducationalInfoService.removeById(id)); |
| | | } |
| | | |
| | | /** |
| | | * 批量删除教育资讯 |
| | | */ |
| | | @Log(title = "教育资讯信息-删除教育资讯", businessType = BusinessType.DELETE) |
| | | @ApiOperation(value = "批量删除教育资讯") |
| | | @DeleteMapping(value = "/deleteByIds") |
| | | public R<Boolean> deleteByIds(@RequestBody List<String> ids) { |
| | | return R.ok(sysEducationalInfoService.removeByIds(ids)); |
| | | } |
| | | |
| | | /** |
| | | * 教育资讯上下架 |
| | | */ |
| | | @Log(title = "教育资讯信息-上下架", businessType = BusinessType.UPDATE) |
| | | @ApiOperation(value = "教育资讯信息上下架") |
| | | @PutMapping(value = "/upAndDown") |
| | | public R<String> upAndDown(@RequestParam(value = "id") String id, |
| | | @RequestParam(value = "status")Integer status) { |
| | | sysEducationalInfoService.update(Wrappers.<TSysEducationalInfo>lambdaUpdate() |
| | | .set(TSysEducationalInfo::getStatus,status) |
| | | .eq(TSysEducationalInfo::getId,id)); |
| | | return R.ok(); |
| | | } |
| | | |
| | | } |
| | | |