All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.user.data.dao.UserLoginLogDao Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.haoxuer.discover.user.data.dao;


import  com.haoxuer.discover.data.core.BaseDao;
import  com.haoxuer.discover.data.core.Updater;
import  com.haoxuer.discover.user.data.entity.UserLoginLog;

/**
* Created by imake on 2021年05月22日10:49:09.
*/
public interface UserLoginLogDao extends BaseDao{

	 UserLoginLog findById(Long id);

	 UserLoginLog save(UserLoginLog bean);

	 UserLoginLog updateByUpdater(Updater updater);

	 UserLoginLog deleteById(Long id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy