lidongdong
2023-08-28 e404524a8376e21ee8a5e320593a0ed162ffed6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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);
}