mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-22 12:09:19 +08:00
feat: #I3OHS6 新增动态API功能
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace OpenAuth.App.Request
|
||||
{
|
||||
public class AddOrUpdateDynamicEntityReq
|
||||
{
|
||||
public string TableName { get; set; }
|
||||
|
||||
public object Obj { get; set; }
|
||||
}
|
||||
}
|
9
OpenAuth.App/DynamicApiApp/Request/DelDynamicReq.cs
Normal file
9
OpenAuth.App/DynamicApiApp/Request/DelDynamicReq.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace OpenAuth.App.Request
|
||||
{
|
||||
public class DelDynamicReq
|
||||
{
|
||||
public string TableName { get; set; }
|
||||
|
||||
public string[] Ids { get; set; }
|
||||
}
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
namespace OpenAuth.App.Request
|
||||
{
|
||||
public class QueryDynamicEntityReq
|
||||
{
|
||||
public string TableName { get; set; }
|
||||
|
||||
public string Id { get; set; }
|
||||
}
|
||||
}
|
10
OpenAuth.App/DynamicApiApp/Request/QueryDynamicListReq.cs
Normal file
10
OpenAuth.App/DynamicApiApp/Request/QueryDynamicListReq.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace OpenAuth.App.Request
|
||||
{
|
||||
public class QueryDynamicListReq: PageReq
|
||||
{
|
||||
/// <summary>
|
||||
/// 表名
|
||||
/// </summary>
|
||||
public string TableName { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user