|
|
@@ -14,6 +14,7 @@ import com.goafanti.report.bo.marketingESBo;
|
|
|
import com.goafanti.report.bo.userDataListBo;
|
|
|
import com.goafanti.user.bo.*;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
+import org.springframework.data.domain.Pageable;
|
|
|
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
@@ -23,7 +24,7 @@ import java.util.Map;
|
|
|
* (User)表数据库访问层
|
|
|
*
|
|
|
* @author makejava
|
|
|
- * @since 2024-11-19 15:44:01
|
|
|
+ * @since 2024-11-28 15:11:05
|
|
|
*/
|
|
|
public interface UserMapper {
|
|
|
|
|
|
@@ -36,6 +37,14 @@ public interface UserMapper {
|
|
|
User queryById(String id);
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
+ * 查询指定行数据
|
|
|
+ *
|
|
|
+ * @param user 查询条件
|
|
|
+ * @param pageable 分页对象
|
|
|
+ * @return 对象列表
|
|
|
+ */
|
|
|
+ List<User> findUserList(User user, @Param("pageable") Pageable pageable);
|
|
|
|
|
|
/**
|
|
|
* 统计总行数
|
|
|
@@ -316,4 +325,3 @@ public interface UserMapper {
|
|
|
int selectUserLevel(String aid);
|
|
|
}
|
|
|
|
|
|
-
|