// Auto Generated Code By excel2json // Generate From Excel\DaoyouConfig.xlsx. SheetName: daolvSkill using System; using Fort23.GameData; namespace Excel2Json { [Config(prefab = "daolvSkill.json")] public partial class daolvSkillHolder : ConfigHolder { } [Serializable] public struct daolvSkill : IConfig { public int GetID() {return ID;} /// ///ID /// #if !COMBAT_SERVER public int ID; #else public int ID{ set; get; } #endif /// ///对应AttributeConfig中的ID /// #if !COMBAT_SERVER public int AttrID; #else public int AttrID{ set; get; } #endif /// ///等级 /// #if !COMBAT_SERVER public int lv; #else public int lv{ set; get; } #endif /// ///名称 /// #if !COMBAT_SERVER public int name; #else public int name{ set; get; } #endif /// ///描述 /// #if !COMBAT_SERVER public int des; #else public int des{ set; get; } #endif /// ///参数 /// #if !COMBAT_SERVER public int[] para; #else public int[] para{ set; get; } #endif /// ///类型 1=唯一 2=叠加 /// #if !COMBAT_SERVER public int type; #else public int type{ set; get; } #endif } } // End of Auto Generated Code