// Auto Generated Code By excel2json // Generate From Excel\EventConfig.xlsx. SheetName: XianTuLogConfig using System; using Fort23.GameData; namespace Excel2Json { [Config(prefab = "XianTuLogConfig.json")] public partial class XianTuLogConfigHolder : ConfigHolder { } [Serializable] public struct XianTuLogConfig : IConfig { public int GetID() {return ID;} /// ///ID /// #if !COMBAT_SERVER public int ID; #else public int ID{ set; get; } #endif /// ///1主线 2事件 /// #if !COMBAT_SERVER public int EventType; #else public int EventType{ set; get; } #endif /// ///名称 /// #if !COMBAT_SERVER public int Title; #else public int Title{ set; get; } #endif /// ///描述 /// #if !COMBAT_SERVER public int Desc; #else public int Desc{ set; get; } #endif /// ///属于哪个章节 /// #if !COMBAT_SERVER public int BigMapID; #else public int BigMapID{ set; get; } #endif } } // End of Auto Generated Code