12345678910111213141516171819202122232425262728293031 |
- /* ==============================================================================
- * 功能描述:ParseFacilityTabCode
- * 创 建 者:Garrett
- * 创建日期:2019/10/22 17:43:59
- * ==============================================================================*/
- using System;
- using System.IO;
- using Newtonsoft.Json;
- using SAGA.DotNetUtils.Serializer;
- namespace Saga.PlugIn.CreateFacility
- {
- /// <summary>
- /// ParseFacilityTabCode
- /// </summary>
- public class ParseFacilityTabCode
- {
- public static MFacilityTabCode Parse(string json)
- {
- try
- {
- return JsonConvert.DeserializeObject<MFacilityTabCode>(json);
- }
- catch (Exception e)
- {
- return null;
- }
- }
- }
- }
|