//------------------------------------------------------------------------------ // // 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 System.Text.Json; namespace cfg.test { public sealed partial class TestIndex : Luban.BeanBase { public TestIndex(JsonElement _buf) { Id = _buf.GetProperty("id").GetInt32(); { var __json0 = _buf.GetProperty("eles"); Eles = new System.Collections.Generic.List(__json0.GetArrayLength()); foreach(JsonElement __e0 in __json0.EnumerateArray()) { test.DemoType1 __v0; __v0 = test.DemoType1.DeserializeDemoType1(__e0); Eles.Add(__v0); } } foreach(var _v in Eles) { Eles_Index.Add(_v.X1, _v); } } public static TestIndex DeserializeTestIndex(JsonElement _buf) { return new test.TestIndex(_buf); } public readonly int Id; public readonly System.Collections.Generic.List Eles; public readonly System.Collections.Generic.Dictionary Eles_Index = new System.Collections.Generic.Dictionary(); public const int __ID__ = 1941154020; public override int GetTypeId() => __ID__; public void ResolveRef(Tables tables) { foreach (var _e in Eles) { _e?.ResolveRef(tables); } } public override string ToString() { return "{ " + "id:" + Id + "," + "eles:" + Luban.StringUtil.CollectionToString(Eles) + "," + "}"; } } }