package com.javaweb.platform.service;
|
|
import com.javaweb.platform.domain.FrontUser;
|
import java.util.List;
|
|
/**
|
* 用户管理Service接口
|
*
|
* @author zmk
|
* @date 2022-03-21
|
*/
|
public interface IFrontUserService
|
{
|
/**
|
* 查询用户管理
|
*
|
* @param id 用户管理ID
|
* @return 用户管理
|
*/
|
public FrontUser selectFrontUserById(Long id);
|
|
/**
|
* 查询用户管理列表
|
*
|
* @param frontUser 用户管理
|
* @return 用户管理集合
|
*/
|
public List<FrontUser> selectFrontUserList(FrontUser frontUser);
|
|
/**
|
* 新增用户管理
|
*
|
* @param frontUser 用户管理
|
* @return 结果
|
*/
|
public int insertFrontUser(FrontUser frontUser);
|
|
/**
|
* 修改用户管理
|
*
|
* @param frontUser 用户管理
|
* @return 结果
|
*/
|
public int updateFrontUser(FrontUser frontUser);
|
|
/**
|
* 批量删除用户管理
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteFrontUserByIds(String ids);
|
|
/**
|
* 删除用户管理信息
|
*
|
* @param id 用户管理ID
|
* @return 结果
|
*/
|
public int deleteFrontUserById(Long id);
|
|
/**
|
* 审核通过
|
* @param id
|
* @return
|
*/
|
public int approve(FrontUser frontUser);
|
}
|