You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
804 B
C#
37 lines
804 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Estsh.Core.Model.Result
|
|
{
|
|
/// <summary>
|
|
/// 客户端请求公共对象
|
|
/// </summary>
|
|
[Serializable]
|
|
public class RequestBody
|
|
{
|
|
/// <summary>
|
|
/// sql语句
|
|
/// </summary>
|
|
[DataMember]
|
|
public string cmd { get; set; }
|
|
|
|
/// <summary>
|
|
/// sql语句参数
|
|
/// </summary>
|
|
[DataMember]
|
|
public Dictionary<string, object>? Params { get; set; }
|
|
|
|
/// <summary>
|
|
/// sql语句参数
|
|
/// </summary>
|
|
[DataMember]
|
|
public Dictionary<string, object>? OutParams { get; set; }
|
|
|
|
}
|
|
}
|