
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
package com.ajin.ajinerp.user.member.dao;
import com.ajin.ajinerp.user.member.vo.LoginLogVO;
import com.ajin.ajinerp.user.member.vo.Member;
import org.apache.ibatis.annotations.Mapper;
/**
* @author 이세현
* @since 2024.03.08
*
* 로그인 처리 관련 DAO 클래스
*/
@Mapper
public interface LoginDAO {
/**
* @author 이세현
* @since 2024.03.08
*
* 로그인 LOG정보 저장
*/
public int insertLoginLog (Member member) throws Exception;
public int insertLoginLog (LoginLogVO loginLog) throws Exception;
}