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.VolunteerCommunityConfigVO;
|
import com.panzhihua.service_community.entity.VolunteerCommunityConfig;
|
|
public interface VolunteerCommunityConfigService extends IService<VolunteerCommunityConfig>
|
{
|
/**
|
* 详情
|
* @param
|
* @return
|
*/
|
R getData(String communityId);
|
|
/**
|
* 新增
|
* @param
|
* @return
|
*/
|
R insertvo(VolunteerCommunityConfigVO item);
|
|
|
R update(VolunteerCommunityConfigVO item);
|
|
|
R delete(String id);
|
}
|