This commit is contained in:
2026-02-06 18:34:35 +08:00
commit f7f4c94c00
3285 changed files with 563208 additions and 0 deletions

51
iMES.Bi.API/Msg_Result.cs Normal file
View File

@@ -0,0 +1,51 @@
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace iMES.Bi.API
{
/// <summary>
/// 返回消息类
/// </summary>
public class Msg_Result
{
[JsonProperty("Action")]
public string Action { get; set; }
[JsonProperty("ErrorMsg")]
public string ErrorMsg { get; set; }
public int DataLength { get; set; }
public string ResultType { get; set; }
[JsonProperty("Result")]
public dynamic Result { get; set; }
[JsonProperty("Result1")]
public dynamic Result1 { get; set; }
[JsonProperty("Result2")]
public dynamic Result2 { get; set; }
[JsonProperty("Result3")]
public dynamic Result3 { get; set; }
[JsonProperty("Result4")]
public dynamic Result4 { get; set; }
[JsonProperty("Result5")]
public dynamic Result5 { get; set; }
[JsonProperty("Result6")]
public dynamic Result6 { get; set; }
[JsonProperty("uptoken")]
public dynamic uptoken { get; set; }
}
}