This commit is contained in:
454313500@qq.com
2021-03-21 15:51:49 +08:00
parent 646cd16e40
commit dc4429d66c
8 changed files with 194 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
using System;
namespace CC.Yi.Common
{
public static class JsonHelper
{
public static string JsonToString(object q)
{
return Newtonsoft.Json.JsonConvert.SerializeObject(q);
}
}
}