|
@@ -2,6 +2,7 @@ package com.huiju.estateagents.mapper;
|
2
|
2
|
|
3
|
3
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
4
|
4
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
5
|
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
5
|
6
|
import com.huiju.estateagents.entity.TaDocumentVerify;
|
6
|
7
|
import com.huiju.estateagents.entity.TaDocumentVerifyModel;
|
7
|
8
|
import org.apache.ibatis.annotations.Mapper;
|
|
@@ -23,6 +24,6 @@ public interface TaDocumentVerifyMapper extends BaseMapper<TaDocumentVerify> {
|
23
|
24
|
|
24
|
25
|
IPage<TaDocumentVerify> getDocumentVerifyList (IPage<TaDocumentVerify> page, @Param("personId") String personId, @Param("orgId")Integer orgId);
|
25
|
26
|
|
26
|
|
- List<TaDocumentVerifyModel> getAdminDocumentList(IPage<TaDocumentVerifyModel> page, @Param("name") String name, @Param("tel") String tel, @Param("orgId")Integer orgId, @Param("startDate")LocalDateTime startDate, @Param("endDate")LocalDateTime endDate);
|
|
27
|
+ List<TaDocumentVerifyModel> getAdminDocumentList(Page page, @Param("name") String name, @Param("tel") String tel, @Param("orgId")Integer orgId, @Param("startDate")LocalDateTime startDate, @Param("endDate")LocalDateTime endDate);
|
27
|
28
|
|
28
|
29
|
}
|