去除pagehelper jar包
This commit is contained in:
parent
f11d6a035c
commit
9e8fbbef89
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.engine.salary.common;
|
||||
package com.engine.salary.component;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue