$TABLE.table.DisplayName
#foreach ($col in $TABLE.table.getColumnList())
$col
#end
#foreach ($col in $TABLE.table.getColumnList())
$col
#end
#foreach ($col in $TABLE.table.getColumns()) #if ($col.getValueType() == "Integer" || $col.getValueType() == "Double" || $col.getValueType() == "Decimal")
{{item.$col.getName()}}
#elseif ($col.getValueType() == "DateTime")
{{parseDate(item.$col.getName()) | date: 'yyyy年MM月dd日HH時mm分ss秒'}}
#else
{{item.$col.getName()}}
#end #end