// Auto Generated Code By excel2json // Generate From Excel\Shop.xlsx. SheetName: ShopItemConfig using System; using Fort23.GameData; namespace Excel2Json { [Config(prefab = "ShopItemConfig.json")] public partial class ShopItemConfigHolder : ConfigHolder { } [Serializable] public struct ShopItemConfig : IConfig { public int GetID() {return ID;} /// ///ID /// #if !COMBAT_SERVER public int ID; #else public int ID{ set; get; } #endif /// ///分发ID (appstore等分发礼包时使用) /// #if !COMBAT_SERVER public string giftID; #else public string giftID{ set; get; } #endif /// ///包含道具ID /// #if !COMBAT_SERVER public int[] itemId; #else public int[] itemId{ set; get; } #endif /// ///道具数量 /// #if !COMBAT_SERVER public int[] itemCount; #else public int[] itemCount{ set; get; } #endif /// ///消耗道具ID 0 = 免费 1032 = 广告 /// #if !COMBAT_SERVER public int costItemId; #else public int costItemId{ set; get; } #endif /// ///现价 (玩家购买价) /// #if !COMBAT_SERVER public int price; #else public int price{ set; get; } #endif /// ///原价 /// #if !COMBAT_SERVER public int oldPrice; #else public int oldPrice{ set; get; } #endif /// ///可买次数 (当期) -1=不限制 /// #if !COMBAT_SERVER public int buyCount; #else public int buyCount{ set; get; } #endif /// ///最大购买次数 (全局) -1=不限制 /// #if !COMBAT_SERVER public int maxBuyCount; #else public int maxBuyCount{ set; get; } #endif /// ///商品所属分页 (shopConfig中ID) /// #if !COMBAT_SERVER public int shopItemGroup; #else public int shopItemGroup{ set; get; } #endif /// ///持续时间(分钟) (-1永久) /// #if !COMBAT_SERVER public int continueTime; #else public int continueTime{ set; get; } #endif /// ///品名 /// #if !COMBAT_SERVER public int shopName; #else public int shopName{ set; get; } #endif /// ///商品介绍 /// #if !COMBAT_SERVER public int shopDesc; #else public int shopDesc{ set; get; } #endif /// ///商品表现的模板 /// #if !COMBAT_SERVER public int shopShowTemplate; #else public int shopShowTemplate{ set; get; } #endif /// ///商品表现的模板de参数 /// #if !COMBAT_SERVER public string[] shopShowTemplateParm; #else public string[] shopShowTemplateParm{ set; get; } #endif } } // End of Auto Generated Code