| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- package com.zhongzheng.controller.user;
- import java.util.List;
- import java.util.Arrays;
- import com.zhongzheng.common.utils.ServletUtils;
- import com.zhongzheng.framework.web.service.WxTokenService;
- import com.zhongzheng.modules.user.bo.UserSchoolInfoAddBo;
- import com.zhongzheng.modules.user.bo.UserSchoolInfoEditBo;
- import com.zhongzheng.modules.user.bo.UserSchoolInfoQueryBo;
- import com.zhongzheng.modules.user.entity.ClientLoginUser;
- import com.zhongzheng.modules.user.service.IUserBankRecordService;
- import com.zhongzheng.modules.user.service.IUserSchoolInfoService;
- import com.zhongzheng.modules.user.vo.UserSchoolInfoVo;
- 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-24
- */
- @Api(value = "用户学校信息控制器", tags = {"用户学校信息管理"})
- @RequiredArgsConstructor(onConstructor_ = @Autowired)
- @RestController
- @RequestMapping("/school/info")
- public class UserSchoolInfoController extends BaseController {
- private final IUserSchoolInfoService iUserSchoolInfoService;
- private final WxTokenService wxTokenService;
- /**
- * 获取用户学校信息详细信息
- */
- @ApiOperation("获取用户学校信息详细信息")
- @GetMapping("/getInfo")
- public AjaxResult getInfo() {
- ClientLoginUser loginUser = wxTokenService.getLoginUser(ServletUtils.getRequest());
- return AjaxResult.success(iUserSchoolInfoService.queryByUserId(loginUser.getUser().getUserId()));
- }
- /**
- * 修改用户学校信息
- */
- @ApiOperation("修改用户学校信息")
- @Log(title = "用户学校信息", businessType = BusinessType.UPDATE)
- @PostMapping("/edit")
- public AjaxResult<Void> edit(@RequestBody UserSchoolInfoEditBo bo) throws IllegalAccessException {
- ClientLoginUser loginUser = wxTokenService.getLoginUser(ServletUtils.getRequest());
- if(loginUser.getUser().getUserId()!=bo.getUserId()){
- return AjaxResult.error("无权限修改");
- }
- return toAjax(iUserSchoolInfoService.updateByEditBo(bo) ? 1 : 0);
- }
- }
|