| | |
| | | import com.xzx.gc.user.dto.*; |
| | | import com.xzx.gc.user.mapper.*; |
| | | import com.xzx.gc.user.service.*; |
| | | import com.xzx.gc.user.vo.UserIdentityVo; |
| | | import com.xzx.gc.util.DoubleUtil; |
| | | import com.xzx.gc.util.SessionUtil; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | | import io.swagger.annotations.ApiImplicitParams; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import io.swagger.annotations.*; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | return result; |
| | | } |
| | | |
| | | @ApiOperation(value = "获取用户身份状态") |
| | | @PostMapping("/user/query/userIdentity") |
| | | public JsonResult<UserIdentityVo> userIdentity(HttpServletRequest request) { |
| | | return JsonResult.success(userService.userIdentity(getUserId(request))); |
| | | } |
| | | |
| | | /** |
| | | * 验证支付密码 |