using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Typhoon.Excel2Json.Export { [Serializable] public class $CLASS_NAME: Table<$TABLE_VALUE_NAME> { /// /// 条目索引器 /// /// 列名 /// key /// public $TABLE_VALUE_NAME this[string column, string key] { get { return GetValue(column, key); } } /// /// 条目索引器 /// /// 列名 /// key /// public $TABLE_VALUE_NAME this[string column, int key] { get { return GetValue(column, key); } } } }