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

com.haoxuer.discover.user.data.service.UserLoginLogService Maven / Gradle / Ivy

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

import com.haoxuer.discover.data.page.Filter;
import com.haoxuer.discover.data.page.Order;
import com.haoxuer.discover.data.page.Page;
import com.haoxuer.discover.data.page.Pageable;
import com.haoxuer.discover.user.data.entity.UserLoginLog;
import com.haoxuer.discover.user.data.enums.LoginState;
import org.apache.shiro.authc.UsernamePasswordToken;

import java.util.List;

/**
 * Created by imake on 2017年07月21日15:55:37.
 */
public interface UserLoginLogService {

    UserLoginLog findById(Long id);

    UserLoginLog save(UserLoginLog bean);

    UserLoginLog update(UserLoginLog bean);

    UserLoginLog deleteById(Long id);

    UserLoginLog[] deleteByIds(Long[] ids);


    Page page(Pageable pageable);

    Page page(Pageable pageable, Object search);


    List list(int first, Integer size, List filters, List orders);

    UserLoginLog save(UsernamePasswordToken token, LoginState loginState);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy