package com.panzhihua.service_dangjian.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.panzhihua.common.model.dtos.partybuilding.PageComPbServiceTeamDTO; import com.panzhihua.common.model.vos.partybuilding.ComPbServiceTeamVO; import com.panzhihua.service_dangjian.model.dos.ComPbServiceTeamDO; /** * @program: springcloud_k8s_panzhihuazhihuishequ * @description: 服务团队 * @author: huang.hongfa weixin hhf9596 qq 959656820 * @create: 2021-01-21 17:37 **/ @Mapper public interface ComPbServiceTeamDAO extends BaseMapper { @Select("") IPage PageComPbServiceTeamDTO(Page page, @Param("pageComPbServiceTeamDTO") PageComPbServiceTeamDTO pageComPbServiceTeamDTO); @Select("select * from com_pb_service_team where id=#{id}") ComPbServiceTeamDO selectComPbServiceTeamById(@Param("id") Long id); @Select("") List getTotlePerson(@Param("param") String param, @Param("communityId") Long communityId); IPage pageServiceTeamProperty(Page page, @Param("pageComPbServiceTeamDTO")PageComPbServiceTeamDTO pageComPbServiceTeamDTO); ComPbServiceTeamVO getComPbServiceTeamData(@Param("communityId") String communityId, @Param("phone") String phone); }