package com.ajin.ajinerp.user.member.service; import com.ajin.ajinerp.common.vo.CustomeResultMap; import com.ajin.ajinerp.user.member.vo.Member; public interface LoginService { /** * @author 이세현 * @since 2024.03.08 * * 유저로그인 처리 */ CustomeResultMap userLogin(Member member) throws Exception; /** * @author 이세현 * @since 2024.03.08 * * 세션 무효화 (로그아웃 처리) */ CustomeResultMap userLogout() throws Exception; /** * @author 이세현 * @since 2024.03.11 * * 로그인 정보 확인 */ CustomeResultMap getLoginInfo() throws Exception; }