|
|
@ -1,5 +1,7 @@ |
|
|
|
package com.kms.enterprise.mapper; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
|
|
import com.kms.enterprise.domain.dto.PersonDto; |
|
|
|
import org.apache.ibatis.annotations.Param; |
|
|
|
import org.springframework.stereotype.Repository; |
|
|
@ -17,9 +19,8 @@ import java.util.List; |
|
|
|
@Repository |
|
|
|
public interface BsSgcYxjdPersonnelInfoMapper extends BaseMapper<BsSgcYxjdPersonnelInfo> { |
|
|
|
|
|
|
|
List<PersonDto> getPerson(@Param("name") String name, |
|
|
|
@Param("adcd") String adcd, |
|
|
|
@Param("enterpriseName") String enterpriseName, |
|
|
|
@Param("pageNum") int pageNum, |
|
|
|
@Param("pageSize") int pageSize); |
|
|
|
IPage<PersonDto> getPerson(@Param("name") String name, |
|
|
|
@Param("adcd") String adcd, |
|
|
|
@Param("enterpriseName") String enterpriseName, |
|
|
|
Page page); |
|
|
|
} |
|
|
|