mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-10 07:38:01 +08:00
19 lines
444 B
C#
19 lines
444 B
C#
![]() |
namespace OpenAuth.App.Request
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 打印方案数据源请求参数
|
||
|
/// </summary>
|
||
|
public class QueryReq : PageReq
|
||
|
{
|
||
|
/// <summary>
|
||
|
///数据源;打印方案对应的数据来源SQL
|
||
|
/// </summary>
|
||
|
public string SourceSql { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 入口参数JSON字符串
|
||
|
/// </summary>
|
||
|
public string ParamJsonStr { get; set; }
|
||
|
}
|
||
|
}
|