ruoyi对接

登录接口、用户信息接口、用户管理接口等
This commit is contained in:
陈淳
2022-09-07 18:22:15 +08:00
parent bf17312a5f
commit 781fa7ea1b
8 changed files with 52 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Common.Models
{
public class PageParModel
{
public int PageNum { get; set; }
public int PageSize { get; set; }
}
}