调整租户的查询分页方式

This commit is contained in:
jishenghua
2025-02-22 15:33:29 +08:00
parent f7dbf030f2
commit 73110d1170
15 changed files with 1465 additions and 30 deletions

View File

@@ -0,0 +1,70 @@
package com.jsh.erp.base;
import java.io.Serializable;
/**
* 表格分页数据对象
*
* @author ji-sheng-hua
*/
public class TableDataInfo implements Serializable
{
private static final long serialVersionUID = 1L;
/** 总记录数 */
private long total;
/** 消息状态码 */
private int code;
/** 消息状态码 */
private Object data;
/** 消息内容 */
private String msg;
/**
* 表格数据对象
*/
public TableDataInfo()
{
}
public long getTotal()
{
return total;
}
public void setTotal(long total)
{
this.total = total;
}
public int getCode()
{
return code;
}
public void setCode(int code)
{
this.code = code;
}
public Object getData() {
return data;
}
public void setData(Object data) {
this.data = data;
}
public String getMsg()
{
return msg;
}
public void setMsg(String msg)
{
this.msg = msg;
}
}