去除pagehelper jar包

This commit is contained in:
钱涛 2024-02-26 16:25:17 +08:00
parent f11d6a035c
commit 9e8fbbef89
4 changed files with 5 additions and 6 deletions

View File

@ -1,4 +1,4 @@
package com.engine.salary.common;
package com.engine.salary.component;
import java.util.ArrayList;
@ -147,8 +147,8 @@ public class Page<E> extends ArrayList<E> {
*
* @return
*/
public com.engine.salary.common.PageInfo<E> toPageInfo() {
com.engine.salary.common.PageInfo<E> pageInfo = new com.engine.salary.common.PageInfo<E>(this);
public PageInfo<E> toPageInfo() {
PageInfo<E> pageInfo = new PageInfo<E>(this);
return pageInfo;
}

View File

@ -1,4 +1,4 @@
package com.engine.salary.common;
package com.engine.salary.component;
import java.io.Serializable;

View File

@ -1,7 +1,6 @@
package com.engine.salary.component;
import com.engine.salary.common.Page;
import org.apache.commons.lang3.StringUtils;
import org.apache.ibatis.binding.MapperMethod;
import org.apache.ibatis.executor.parameter.ParameterHandler;

View File

@ -10,7 +10,7 @@ import java.util.List;
@Data
@ToString
public class PageInfo<T> extends com.engine.salary.common.PageInfo<T> {
public class PageInfo<T> extends com.engine.salary.component.PageInfo<T> {
Class<T> clazz;
public void setColumns(List<Column> columns) {