| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | 
							- // Auto Generated Code By excel2json
 
- // Generate From Excel\DaoyouConfig.xlsx. SheetName: DaoyouGiftConfig
 
- using System;
 
- using Fort23.GameData;
 
- namespace Excel2Json
 
- {
 
- 	[Config(prefab = "DaoyouGiftConfig.json")]
 
- 	public partial class DaoyouGiftConfigHolder : ConfigHolder<DaoyouGiftConfig>
	{
 
- 	}
 
- 	[Serializable]
 
- 	public struct DaoyouGiftConfig : IConfig
	{
 
- 		public int GetID() {return ID;} 
 
- 		/// <summary>
 
- 		///ID
 
- 		/// </summary>
 
- #if !COMBAT_SERVER
 
- 		public int ID;
 
- #else
 
- 		public int ID{ set; get; }
 
- #endif
 
- 		
 
- 		/// <summary>
 
- 		///道具ID
 
- 		/// </summary>
 
- #if !COMBAT_SERVER
 
- 		public int ItemID;
 
- #else
 
- 		public int ItemID{ set; get; }
 
- #endif
 
- 		
 
- 		/// <summary>
 
- 		///默认增加的好感度值
 
- 		/// </summary>
 
- #if !COMBAT_SERVER
 
- 		public int emotionValue;
 
- #else
 
- 		public int emotionValue{ set; get; }
 
- #endif
 
- 		
 
- 	}
 
- }
 
- // End of Auto Generated Code
 
 
  |