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("添加失败");
|
// }
|
}
|