| | |
| | | import com.panzhihua.service_community.service.VolunteerMerchantService; |
| | | import com.panzhihua.service_community.service.VolunteerMerchantWithdrawService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import javax.annotation.Resource; |
| | |
| | | private VolunteerMerchantService vmService; |
| | | |
| | | @Override |
| | | public R getList(int pageNum, int pageSize, String disposeType,String merchantName) |
| | | public R getList(int pageNum, int pageSize, String disposeType,String merchantName,String merchantId,String communityId) |
| | | { |
| | | Page<VolunteerMerchantWithdraw> page=new Page(pageNum,pageSize); |
| | | return R.ok(baseMapper.getList(page,disposeType,merchantName)); |
| | | return R.ok(baseMapper.getList(page,disposeType,merchantName,merchantId,communityId)); |
| | | } |
| | | |
| | | @Override |