//------------------------------------------------------------------------------ // // 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 Bright.Serialization; using System.Collections.Generic; using SimpleJSON; namespace cfg { public sealed partial class EventGatherCoreMain : Bright.Config.BeanBase { public JSONNode json; public EventGatherCoreMain(JSONNode _json) { { if(!_json["ID"].IsNumber) { throw new SerializationException(); } ID = _json["ID"]; } { if(!_json["InfoPanel"].IsString) { throw new SerializationException(); } InfoPanel = _json["InfoPanel"]; } { if(!_json["EventPanel"].IsString) { throw new SerializationException(); } EventPanel = _json["EventPanel"]; } { if(!_json["EventRewardPanel"].IsString) { throw new SerializationException(); } EventRewardPanel = _json["EventRewardPanel"]; } { if(!_json["CoreItem"].IsNumber) { throw new SerializationException(); } CoreItem = _json["CoreItem"]; } { if(!_json["IconEvent"].IsString) { throw new SerializationException(); } IconEvent = _json["IconEvent"]; } { if(!_json["PackId"].IsNumber) { throw new SerializationException(); } PackId = _json["PackId"]; } { if(!_json["PackId2"].IsNumber) { throw new SerializationException(); } PackId2 = _json["PackId2"]; } { if(!_json["AdPackId"].IsNumber) { throw new SerializationException(); } AdPackId = _json["AdPackId"]; } { if(!_json["ChainPackPanel"].IsString) { throw new SerializationException(); } ChainPackPanel = _json["ChainPackPanel"]; } { if(!_json["PackPanel"].IsString) { throw new SerializationException(); } PackPanel = _json["PackPanel"]; } { var __json0 = _json["StageList"]; if(!__json0.IsArray) { throw new SerializationException(); } StageList = new System.Collections.Generic.List(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { int __v0; { if(!__e0.IsNumber) { throw new SerializationException(); } __v0 = __e0; } StageList.Add(__v0); } } json = _json; PostInit(); } public EventGatherCoreMain(int ID, string InfoPanel, string EventPanel, string EventRewardPanel, int CoreItem, string IconEvent, int PackId, int PackId2, int AdPackId, string ChainPackPanel, string PackPanel, System.Collections.Generic.List StageList ) { this.ID = ID; this.InfoPanel = InfoPanel; this.EventPanel = EventPanel; this.EventRewardPanel = EventRewardPanel; this.CoreItem = CoreItem; this.IconEvent = IconEvent; this.PackId = PackId; this.PackId2 = PackId2; this.AdPackId = AdPackId; this.ChainPackPanel = ChainPackPanel; this.PackPanel = PackPanel; this.StageList = StageList; PostInit(); } public static EventGatherCoreMain DeserializeEventGatherCoreMain(JSONNode _json) { return new EventGatherCoreMain(_json); } public int ID { get; private set; } public string InfoPanel { get; private set; } public string EventPanel { get; private set; } public string EventRewardPanel { get; private set; } public int CoreItem { get; private set; } public string IconEvent { get; private set; } /// /// 读shop表 /// public int PackId { get; private set; } /// /// 读shop表 /// public int PackId2 { get; private set; } /// /// 读shop表 /// public int AdPackId { get; private set; } public string ChainPackPanel { get; private set; } public string PackPanel { get; private set; } /// /// 调用EventShootingRangeStage表 /// public System.Collections.Generic.List StageList { get; private set; } public const int __ID__ = -833992147; public override int GetTypeId() => __ID__; public void Resolve(Dictionary _tables) { PostResolve(); } public void TranslateText(System.Func translator) { } public override string ToString() { return "{ " + "ID:" + ID + "," + "InfoPanel:" + InfoPanel + "," + "EventPanel:" + EventPanel + "," + "EventRewardPanel:" + EventRewardPanel + "," + "CoreItem:" + CoreItem + "," + "IconEvent:" + IconEvent + "," + "PackId:" + PackId + "," + "PackId2:" + PackId2 + "," + "AdPackId:" + AdPackId + "," + "ChainPackPanel:" + ChainPackPanel + "," + "PackPanel:" + PackPanel + "," + "StageList:" + Bright.Common.StringUtil.CollectionToString(StageList) + "," + "}"; } partial void PostInit(); partial void PostResolve(); } }