//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
using Luban;
using SimpleJSON;
namespace cfg
{
public sealed partial class Hook : Luban.BeanBase
{
public Hook(JSONNode _buf)
{
{ if(!_buf["id"].IsNumber) { throw new SerializationException(); } Id = _buf["id"]; }
{ if(!_buf["ding"].IsNumber) { throw new SerializationException(); } Ding = _buf["ding"]; }
}
public static Hook DeserializeHook(JSONNode _buf)
{
return new Hook(_buf);
}
///
/// Id
///
public readonly int Id;
///
/// 长钉
///
public readonly int Ding;
public const int __ID__ = 2255171;
public override int GetTypeId() => __ID__;
public void ResolveRef(Tables tables)
{
}
public override string ToString()
{
return "{ "
+ "id:" + Id + ","
+ "ding:" + Ding + ","
+ "}";
}
}
}