// Auto Generated Code By excel2json // Generate From Excel\BasicTask.xlsx. SheetName: NewPlayerTaskConfig using System; using Fort23.GameData; namespace Excel2Json { [Config(prefab = "NewPlayerTaskConfig.json")] public partial class NewPlayerTaskConfigHolder : ConfigHolder { } [Serializable] public struct NewPlayerTaskConfig : IConfig { public int GetID() {return ID;} /// ///ID /// public int ID; /// ///第几套任务 1=新手任务1-7 2=新手任务8-14 /// public int Order; /// ///第几节 (每天1节) /// public int Section; /// ///第几页 /// public int Page; /// ///本页任务 /// public int[] Tasks; /// ///积分道具ID /// public int ScoreItem; /// ///积分节点 第一套新手任务每页只能4个奖励节点 /// public int[] KeyScore; /// ///积分奖励 (填奖励页ID) /// public int[] keyAward; } } // End of Auto Generated Code