| | |
| | | |
| | | 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.common.model.vos.community.VolunteerMerchantVO; |
| | | import com.panzhihua.service_community.entity.SysUser; |
| | | 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); |
| | | R volunteerMerchantGetList(int pageNum,int pageSize, |
| | | String merchantState, |
| | | String merchantType, |
| | | String name, |
| | | String communityId); |
| | | /** |
| | | * 新增 |
| | | * @param |
| | | * @return |
| | | */ |
| | | R insertVolunteerMerchant(VolunteerTypeVO volunteerTypeVO); |
| | | R insertVolunteerMerchant(VolunteerMerchantVO vtvo); |
| | | |
| | | R updateVolunteerMerchant(VolunteerTypeVO volunteerTypeVO); |
| | | R updateVolunteerMerchant(VolunteerMerchantVO vtvo); |
| | | |
| | | R deleteVolunteerMerchant(String id); |
| | | |
| | | |
| | | /** |
| | | * 根据电话号码 或者姓名查询用户 |
| | | * @param |
| | | * @return |
| | | */ |
| | | R getUser(String communityId,String userName,String userPhone); |
| | | |
| | | } |