package com.nq.service;
|
|
import com.nq.pojo.UserLeverApply;
|
import com.nq.vo.user.UserApplyEditParamVo;
|
import com.nq.vo.user.UserApplyLeverRes;
|
|
import java.util.List;
|
|
/**
|
* 【请填写功能名称】Service接口
|
*
|
* @author ruoyi
|
* @date 2024-03-19
|
*/
|
public interface IUserLeverApplyService
|
{
|
/**
|
* 查询【请填写功能名称】
|
*
|
* @param id 【请填写功能名称】ID
|
* @return 【请填写功能名称】
|
*/
|
public UserLeverApply selectUserLeverApplyById(Long id);
|
|
/**
|
* 查询【请填写功能名称】列表
|
*
|
* @param userLeverApply 【请填写功能名称】
|
* @return 【请填写功能名称】集合
|
*/
|
public List<UserLeverApply> selectUserLeverApplyList(UserLeverApply userLeverApply);
|
|
public List<UserApplyLeverRes> selectUserLeverApplyVoList(UserLeverApply userLeverApply);
|
|
/**
|
* 新增【请填写功能名称】
|
*
|
* @param userLeverApply 【请填写功能名称】
|
* @return 结果
|
*/
|
public int insertUserLeverApply(UserLeverApply userLeverApply);
|
|
/**
|
* 修改【请填写功能名称】
|
*
|
* @param userLeverApply 【请填写功能名称】
|
* @return 结果
|
*/
|
public int updateUserLeverApply(UserLeverApply userLeverApply);
|
|
public int editUserLever( UserApplyEditParamVo paramVo);
|
|
|
/**
|
* 批量删除【请填写功能名称】
|
*
|
* @param ids 需要删除的【请填写功能名称】ID
|
* @return 结果
|
*/
|
public int deleteUserLeverApplyByIds(Long[] ids);
|
|
/**
|
* 删除【请填写功能名称】信息
|
*
|
* @param id 【请填写功能名称】ID
|
* @return 结果
|
*/
|
public int deleteUserLeverApplyById(Long id);
|
}
|