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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.panzhihua.service_community.service.impl;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.panzhihua.common.model.vos.R;
import com.panzhihua.common.model.vos.community.VolunteerTypeVO;
import com.panzhihua.service_community.dao.VolunteerMerchantDao;
import com.panzhihua.service_community.dao.VolunteerTypeDao;
import com.panzhihua.service_community.entity.VolunteerActivity;
import com.panzhihua.service_community.entity.VolunteerMerchant;
import com.panzhihua.service_community.entity.VolunteerType;
import com.panzhihua.service_community.service.VolunteerMerchantService;
import com.panzhihua.service_community.service.VolunteerTypeService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
 
 
@Slf4j
@Service
public class VolunteerMerchantServiceImpl extends ServiceImpl<VolunteerMerchantDao,
        VolunteerMerchant> implements VolunteerMerchantService {
    @Override
    public R volunteerMerchantGetList(int pageNum, int pageSize, String type) {
        return null;
    }
 
    @Override
    public R insertVolunteerMerchant(VolunteerTypeVO volunteerTypeVO) {
        return null;
    }
 
    @Override
    public R updateVolunteerMerchant(VolunteerTypeVO volunteerTypeVO) {
        return null;
    }
 
    @Override
    public R deleteVolunteerMerchant(String id) {
        return null;
    }
 
 
//    @Override
//    public R volunteerTypeDelete(String id) {
//        int num= baseMapper.volunteerTypeDelete(id);
//        if(num>0)
//        {
//            return R.ok();
//        }
//        return R.fail("添加失败");
//    }
}