package com.panzhihua.service_community.service;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.panzhihua.common.model.vos.community.MostBeautifulVolunteerVO;
|
import com.panzhihua.service_community.entity.MostBeautifulVolunteer;
|
import org.apache.ibatis.annotations.Param;
|
|
public interface MostBeautifulVolunteerService extends IService<MostBeautifulVolunteer>
|
{
|
|
/**
|
* 查询单个
|
* @param Id
|
* @return
|
*/
|
MostBeautifulVolunteer queryById(String Id);
|
|
|
/**
|
* 分页查询
|
* @param name
|
* @param unmountType
|
* @return
|
*/
|
IPage<MostBeautifulVolunteer> queryList(int pageNum,
|
int pageSize,
|
String name,
|
String unmountType);
|
|
/**
|
* 新增
|
* @param mostBeautifulVolunteerVO
|
* @return
|
*/
|
int insertMostBeautifulVolunteer(MostBeautifulVolunteerVO mostBeautifulVolunteerVO);
|
|
|
/**
|
* 更新
|
* @param mostBeautifulVolunteerVO
|
* @return
|
*/
|
int updateById(MostBeautifulVolunteerVO mostBeautifulVolunteerVO);
|
|
|
/**
|
* 删除
|
* @param Id
|
* @return
|
*/
|
int deleteById(String Id);
|
|
}
|