23 lines
486 B
C#
23 lines
486 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace OpenApi.Models
|
|
{
|
|
/// <summary>
|
|
/// 接口入参对象
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
public class ParamsModel<T>
|
|
{
|
|
/// <summary>
|
|
/// 授权码
|
|
/// </summary>
|
|
public string code { get; set; }
|
|
/// <summary>
|
|
/// 查询内容
|
|
/// </summary>
|
|
public T jsonString { get; set; }
|
|
}
|
|
} |