| | |
| | | import com.panzhihua.sangeshenbian.model.entity.PartyMember; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.sangeshenbian.warpper.PartyMemberQuery; |
| | | import com.panzhihua.sangeshenbian.warpper.PendingPartyMemberApplicationVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | * @return |
| | | */ |
| | | List<PartyMember> queryList( @Param("query") PartyMemberQuery query, @Param("loginUserInfo") SystemUserVo loginUserInfo); |
| | | |
| | | /** |
| | | * 党员待审核申请列表 |
| | | */ |
| | | Page<PendingPartyMemberApplicationVO> queryPreAuditPage(@Param("page") Page<PendingPartyMemberApplicationVO> page, |
| | | @Param("phone") String phone, |
| | | @Param("accountLevel") Integer accountLevel, |
| | | @Param("districtsCode") String districtsCode, |
| | | @Param("streetId") String streetId, |
| | | @Param("communityId") Long communityId); |
| | | } |