| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- package com.zhongzheng.controller.user;
- import java.util.List;
- import java.util.Arrays;
- import com.zhongzheng.common.core.domain.entity.SysUser;
- import com.zhongzheng.modules.user.bo.UserAddBo;
- import com.zhongzheng.modules.user.bo.UserEditBo;
- import com.zhongzheng.modules.user.bo.UserQueryBo;
- import com.zhongzheng.modules.user.bo.UserStudyRecordQueryBo;
- import com.zhongzheng.modules.user.service.IUserService;
- import com.zhongzheng.modules.user.vo.UserStudyRecordVo;
- import com.zhongzheng.modules.user.vo.UserVo;
- import lombok.RequiredArgsConstructor;
- import org.springframework.security.access.prepost.PreAuthorize;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.PostMapping;
- import org.springframework.web.bind.annotation.PutMapping;
- import org.springframework.web.bind.annotation.DeleteMapping;
- import org.springframework.web.bind.annotation.PathVariable;
- import org.springframework.web.bind.annotation.RequestBody;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- import com.zhongzheng.common.annotation.Log;
- import com.zhongzheng.common.core.controller.BaseController;
- import com.zhongzheng.common.core.domain.AjaxResult;
- import com.zhongzheng.common.enums.BusinessType;
- import com.zhongzheng.common.utils.poi.ExcelUtil;
- import com.zhongzheng.common.core.page.TableDataInfo;
- import io.swagger.annotations.Api;
- import io.swagger.annotations.ApiOperation;
- /**
- * 客户端用户Controller
- *
- * @author ruoyi
- * @date 2021-06-08
- */
- @Api(value = "客户端用户控制器", tags = {"客户端用户管理"})
- @RequiredArgsConstructor(onConstructor_ = @Autowired)
- @RestController
- @RequestMapping("/app/user")
- public class UserController extends BaseController {
- private final IUserService iUserService;
- /**
- * 查询客户端用户列表
- */
- @ApiOperation("查询客户端用户列表")
- @PreAuthorize("@ss.hasPermi('app:user:list')")
- @GetMapping("/list")
- public TableDataInfo<UserVo> list(UserQueryBo bo) {
- startPage();
- List<UserVo> list = iUserService.selectList(bo);
- return getDataTable(list);
- }
- /**
- * 导出客户端用户列表
- */
- @ApiOperation("导出客户端用户列表")
- @PreAuthorize("@ss.hasPermi('app:user:export')")
- @Log(title = "客户端用户", businessType = BusinessType.EXPORT)
- @GetMapping("/export")
- public AjaxResult<UserVo> export(UserQueryBo bo) {
- List<UserVo> list = iUserService.queryList(bo);
- ExcelUtil<UserVo> util = new ExcelUtil<UserVo>(UserVo.class);
- return util.exportExcel(list, "客户端用户");
- }
- /**
- * 获取客户端用户详细信息
- */
- @ApiOperation("获取客户端用户详细信息")
- @PreAuthorize("@ss.hasPermi('app:user:query')")
- @GetMapping("/{userId}")
- public AjaxResult<UserVo> getInfo(@PathVariable("userId" ) Long userId) {
- return AjaxResult.success(iUserService.queryById(userId));
- }
- /**
- * 新增客户端用户
- */
- @ApiOperation("新增客户端用户")
- @PreAuthorize("@ss.hasPermi('app:user:add')")
- @Log(title = "客户端用户", businessType = BusinessType.INSERT)
- @PostMapping()
- public AjaxResult<Void> add(@RequestBody UserAddBo bo) {
- return toAjax(iUserService.insertByAddBo(bo) ? 1 : 0);
- }
- /**
- * 修改客户端用户
- */
- @ApiOperation("修改客户端用户")
- @PreAuthorize("@ss.hasPermi('app:user:edit')")
- @Log(title = "客户端用户", businessType = BusinessType.UPDATE)
- @PostMapping("/edit")
- public AjaxResult<Void> edit(@RequestBody UserEditBo bo) throws IllegalAccessException {
- return toAjax(iUserService.updateByEditBo(bo) ? 1 : 0);
- }
- /**
- * 删除客户端用户
- */
- @ApiOperation("删除客户端用户")
- @PreAuthorize("@ss.hasPermi('app:user:remove')")
- @Log(title = "客户端用户" , businessType = BusinessType.DELETE)
- @PostMapping("/delete")
- public AjaxResult<Void> remove(@PathVariable Long[] userIds) {
- return toAjax(iUserService.deleteWithValidByIds(Arrays.asList(userIds), true) ? 1 : 0);
- }
- /**
- * 查询客户端用户学习记录列表
- */
- @ApiOperation("客户端用户学习记录列表")
- @PreAuthorize("@ss.hasPermi('app:user:studyRecordList')")
- @GetMapping("/studyRecordList")
- public TableDataInfo<UserStudyRecordVo> studyRecordList(UserStudyRecordQueryBo bo) {
- startPage();
- List<UserStudyRecordVo> list = iUserService.selectStudyRecordList(bo);
- return getDataTable(list);
- }
- }
|