// Auto Generated Code By excel2json // Generate From Excel\Shop.xlsx. SheetName: ShopGroupConfig using System; using Fort23.GameData; namespace Excel2Json { [Config(prefab = "ShopGroupConfig.json")] public partial class ShopGroupConfigHolder : ConfigHolder { } [Serializable] public struct ShopGroupConfig : IConfig { public int GetID() {return ID;} /// ///ID /// #if !COMBAT_SERVER public int ID; #else public int ID{ set; get; } #endif /// ///商店名 (顶部名字) /// #if !COMBAT_SERVER public int shopName; #else public int shopName{ set; get; } #endif /// ///页签排序 (小的在前面) /// #if !COMBAT_SERVER public int pageSortNum; #else public int pageSortNum{ set; get; } #endif } } // End of Auto Generated Code