| | |
| | | package com.panzhihua.sangeshenbian.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.common.model.vos.LoginUserInfoVO; |
| | | import com.panzhihua.common.model.vos.sangeshenbian.SystemUserVo; |
| | | import com.panzhihua.sangeshenbian.model.entity.PartyMember; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.sangeshenbian.warpper.PartyMemberApplicationRequest; |
| | | import com.panzhihua.sangeshenbian.warpper.PartyMemberImportFailedVO; |
| | | import com.panzhihua.sangeshenbian.warpper.PartyMemberDTO; |
| | | import com.panzhihua.sangeshenbian.warpper.PartyMemberQuery; |
| | | import com.panzhihua.sangeshenbian.warpper.PendingPartyMemberApplicationVO; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | void export(PartyMemberQuery query, SystemUserVo loginUserInfo) throws IOException; |
| | | |
| | | /** |
| | | *导入 |
| | | * 导入 |
| | | * |
| | | * @param file |
| | | * @param loginUserInfo |
| | | * @return |
| | | */ |
| | | void importExcel(SystemUserVo loginUserInfo); |
| | | List<PartyMemberImportFailedVO> importExcel(MultipartFile file, SystemUserVo loginUserInfo) throws IOException; |
| | | |
| | | /** |
| | | * 党员申请 |
| | | */ |
| | | void applyForMembership(PartyMemberApplicationRequest dto, LoginUserInfoVO loginUserInfo); |
| | | |
| | | /** |
| | | * 审核 |
| | |
| | | * @param loginUserInfo |
| | | */ |
| | | void audit(PartyMemberDTO dto, SystemUserVo loginUserInfo); |
| | | |
| | | /** |
| | | * 根据电话号码查询有效的党员数据 |
| | | * @param phone |
| | | * @return |
| | | */ |
| | | PartyMember getPartyMemberByPhone(String phone); |
| | | |
| | | Page<PendingPartyMemberApplicationVO> preAuditList(Page<PendingPartyMemberApplicationVO> page, LoginUserInfoVO loginUserInfo); |
| | | |
| | | Boolean verifyPartyMemberByPhone(String phone); |
| | | } |