标签: scala
如果我有这样的课程:
case class Key( id: Long, var text: String, var `type`: String )
有没有办法从该类中获取这样的参数列表:
['id', 'text', 'type']
如果是这样,我该怎么做?谢谢!