接口拦截器实现

This commit is contained in:
xiongfeng
2022-06-17 17:58:53 +08:00
parent c975b10d0e
commit 9527c1064f
7 changed files with 162 additions and 102 deletions

View File

@@ -0,0 +1,20 @@
package cn.xf.basedemo.common.model;
import lombok.Data;
/**
* @program: xf-boot-base
* @ClassName LoginUserInfo
* @description:
* @author: xiongfeng
* @create: 2022-06-17 14:54
**/
@Data
public class LoginUserInfo {
private Integer id;
private String name;
private String phone;
}