feat: add list user in sys
This commit is contained in:
@@ -1,19 +1,20 @@
|
||||
package org.wfc.common.core.web.controller;
|
||||
|
||||
import java.beans.PropertyEditorSupport;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import com.github.pagehelper.PageInfo;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.web.bind.WebDataBinder;
|
||||
import org.springframework.web.bind.annotation.InitBinder;
|
||||
import com.github.pagehelper.PageInfo;
|
||||
import org.wfc.common.core.constant.HttpStatus;
|
||||
import org.wfc.common.core.utils.DateUtils;
|
||||
import org.wfc.common.core.utils.PageUtils;
|
||||
import org.wfc.common.core.web.domain.AjaxResult;
|
||||
import org.wfc.common.core.web.page.TableDataInfo;
|
||||
|
||||
import java.beans.PropertyEditorSupport;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* web层通用数据处理
|
||||
*
|
||||
|
||||
@@ -8,6 +8,9 @@ public class PageDataVo {
|
||||
/** 列表数据 */
|
||||
private List<?> rows;
|
||||
|
||||
public PageDataVo() {
|
||||
}
|
||||
|
||||
public PageDataVo(List<?> list, Long total) {
|
||||
this.rows = list;
|
||||
this.total = total;
|
||||
|
||||
Reference in New Issue
Block a user