// 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 /// public int ID; /// ///选项卡排序 -小的在前面 /// public int sortNum; /// ///商店名 (左侧列表中名字) /// public int shopName; /// ///刷新类型 0=不刷新 1=每日自动刷新 2=每周自动刷新 3=每月自动刷新 4=按开启时间固定间隔自动刷新 /// public int RefreshType; /// ///刷新消耗道具ID (此列不为-1时,可以手动刷新) /// public int refreshCostItemId; /// ///刷新消耗道具数量 (刷新次数增加消耗会改变,0表示免费) /// public int[] refreshCost; /// ///周期内刷新次数上限(如果有手动刷新,必须要填次数) /// public int refreshLimit; } } // End of Auto Generated Code