| | |
| | | package com.panzhihua.service_community.dao; |
| | | |
| | | 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.panzhihua.common.model.vos.partybuilding.ComPbServiceTeamVO; |
| | | import com.panzhihua.common.model.vos.partybuilding.PartyCommitteeVO; |
| | | import com.panzhihua.service_community.model.dos.ComActMessageDO; |
| | | |
| | | @Mapper |
| | | public interface ComActMessageDAO extends BaseMapper<ComActMessageDO> { |
| | | |
| | | @Select("select * from com_pb_member_role where id=#{id}") |
| | | PartyCommitteeVO selectPartyCommitteeById(@Param("id")Long id); |
| | | @Select("select * from com_pb_service_team where id=#{id}") |
| | | ComPbServiceTeamVO selectComPbServiceTeamById(@Param("id")Long id); |
| | | } |