scalaで開発をしております。
scalikejdbcで自動で作成されたコードでCRUDの処理をしたいと思いましたが
Update文だけできません。

object hoge extends SQLSyntaxSupport[hoge] {
  def save(entity: hoge)(implicit session: DBSession = autoSession): hoge = {
    withSQL {
      update(hoge).set(
        column.id -> entity.id,
        column.test-> entity.test
      ).where.eq(column.id, entity.id)
    }.update.apply()
    entity
  }
}

MVCでのcontrollerの部分の処理をお願いします。
この処理を教えてください。
環境は、

  • Mac OS X
  • scala + play framework

です。