You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
451 B

package com.cyl.h5.config;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.cyl.ums.domain.Member;
import com.ruoyi.common.constant.Constants;
import com.ruoyi.framework.config.LocalDataUtil;
import org.springframework.stereotype.Service;
@Service
public class SecurityUtil {
public static Member getLocalMember() {
Member member = (Member) LocalDataUtil.getVar(Constants.MEMBER_INFO);
return member;
}
}