package com.panzhihua.service_community.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.panzhihua.common.model.vos.R;
|
import com.panzhihua.common.model.vos.community.VolunteerTypeVO;
|
import com.panzhihua.service_community.entity.VolunteerMerchant;
|
import com.panzhihua.service_community.entity.VolunteerType;
|
|
public interface VolunteerMerchantService extends IService<VolunteerMerchant>
|
{
|
/**
|
* 分页查询
|
* @param
|
* @return
|
*/
|
R volunteerMerchantGetList(int pageNum,int pageSize,String type);
|
/**
|
* 新增
|
* @param
|
* @return
|
*/
|
R insertVolunteerMerchant(VolunteerTypeVO volunteerTypeVO);
|
|
R updateVolunteerMerchant(VolunteerTypeVO volunteerTypeVO);
|
|
R deleteVolunteerMerchant(String id);
|
}
|