mirror of
https://gitee.com/youlaitech/youlai-mall.git
synced 2024-12-22 20:54:26 +08:00
feat:微信认证退出接口完成
This commit is contained in:
parent
2e4fdf551c
commit
af34d2d81b
@ -5,7 +5,7 @@ import lombok.Data;
|
||||
@Data
|
||||
public class MemberDTO {
|
||||
|
||||
private Integer id;
|
||||
private Long id;
|
||||
private String username;
|
||||
private String password;
|
||||
private Integer status;
|
||||
|
@ -11,8 +11,6 @@ import java.time.LocalDate;
|
||||
@Accessors(chain = true)
|
||||
public class UmsMember {
|
||||
|
||||
|
||||
|
||||
private Long id;
|
||||
|
||||
private String username;
|
||||
|
@ -0,0 +1,14 @@
|
||||
package com.youlai.mall.ums.api.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class MemberVO {
|
||||
|
||||
private String nickname;
|
||||
|
||||
|
||||
private String avatar;
|
||||
|
||||
|
||||
}
|
@ -9,7 +9,7 @@ import java.util.List;
|
||||
@NoArgsConstructor
|
||||
public class UserDTO {
|
||||
|
||||
private Integer id;
|
||||
private Long id;
|
||||
private String username;
|
||||
private String password;
|
||||
private Integer status;
|
||||
|
@ -10,7 +10,7 @@ import lombok.Data;
|
||||
public class SysUser extends BaseEntity {
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
private Long id;
|
||||
|
||||
private String username;
|
||||
|
||||
@ -24,8 +24,6 @@ public class SysUser extends BaseEntity {
|
||||
|
||||
private String password;
|
||||
|
||||
private String salt;
|
||||
|
||||
private Integer status;
|
||||
|
||||
private Integer deptId;
|
||||
|
@ -5,7 +5,7 @@ import lombok.Data;
|
||||
@Data
|
||||
public class SysUserRole {
|
||||
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
private Integer roleId;
|
||||
|
||||
|
@ -19,7 +19,7 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
|
||||
http
|
||||
.authorizeRequests().requestMatchers(EndpointRequest.toAnyEndpoint()).permitAll()
|
||||
.and()
|
||||
.authorizeRequests().antMatchers("/rsa/publicKey").permitAll().anyRequest().authenticated()
|
||||
.authorizeRequests().antMatchers("/rsa/publicKey","/oauth/logout").permitAll().anyRequest().authenticated()
|
||||
.and()
|
||||
.csrf().disable();
|
||||
}
|
||||
|
@ -88,8 +88,6 @@ public class AuthController {
|
||||
return Result.success(oauth2Token);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@DeleteMapping("/logout")
|
||||
public Result logout(HttpServletRequest request) {
|
||||
String payload = request.getHeader(AuthConstants.JWT_PAYLOAD_KEY);
|
||||
@ -107,7 +105,6 @@ public class AuthController {
|
||||
return Result.success();
|
||||
}
|
||||
|
||||
|
||||
private Result handleForWxAppAuth(Principal principal, Map<String, String> parameters) throws WxErrorException, HttpRequestMethodNotSupportedException {
|
||||
|
||||
String code = parameters.get("code");
|
||||
|
@ -20,7 +20,7 @@ import java.util.Collection;
|
||||
@NoArgsConstructor
|
||||
public class User implements UserDetails {
|
||||
|
||||
private Integer id;
|
||||
private Long id;
|
||||
|
||||
private String username;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user