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

18
iMES.Bi.API/APIHelp.cs Normal file
View File

@@ -0,0 +1,18 @@
using Newtonsoft.Json.Linq;
namespace iMES.Bi.API
{
class APIHelp
{
}
public static class APIExtensions
{
public static string Request(this JObject JData, string strPro, string strDefault = null)
{
return JData[strPro] != null ? JData[strPro].ToString() : strDefault;
}
}
}