2
0

feat: add list user in sys

This commit is contained in:
caiyuchao
2024-12-13 15:02:58 +08:00
parent d1e99f28ed
commit 967a65f571
6 changed files with 66 additions and 8 deletions

View File

@@ -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层通用数据处理
*

View File

@@ -8,6 +8,9 @@ public class PageDataVo {
/** 列表数据 */
private List<?> rows;
public PageDataVo() {
}
public PageDataVo(List<?> list, Long total) {
this.rows = list;
this.total = total;