ExampleController.kt 644 B

1234567891011121314151617181920212223
  1. package com.gxzc.zen.controller
  2. import com.gxzc.zen.api.bus.service.IMgrFondsService
  3. import org.slf4j.LoggerFactory
  4. import org.springframework.beans.factory.annotation.Autowired
  5. import org.springframework.web.bind.annotation.GetMapping
  6. import org.springframework.web.bind.annotation.RestController
  7. @RestController
  8. class ExampleController {
  9. companion object {
  10. private val logger = LoggerFactory.getLogger(ExampleController::class.java)
  11. }
  12. @Autowired
  13. private lateinit var mgrFondsService: IMgrFondsService
  14. @GetMapping("testTransaction")
  15. fun testTransaction() {
  16. mgrFondsService.testTransaction()
  17. }
  18. }