ruoyi对接
登录接口、用户信息接口、用户管理接口等
This commit is contained in:
@@ -9,11 +9,21 @@ namespace Yi.Framework.Common.Models
|
||||
|
||||
public class PageModel<T>
|
||||
{
|
||||
public PageModel() { }
|
||||
public PageModel(T data,int total)
|
||||
{
|
||||
Data = data;
|
||||
Total = total;
|
||||
}
|
||||
public int Total { get; set; }
|
||||
public T Data { get; set; }
|
||||
}
|
||||
|
||||
public class PageModel : PageModel<object>
|
||||
{
|
||||
public PageModel() { }
|
||||
public PageModel(object data, int total) : base(data, total)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user