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