ExampleController.kt 460 B

12345678910111213141516171819
  1. package com.gxzc.zen.persistence.controller
  2. import com.gxzc.zen.persistence.service.ISysDeptService
  3. import org.springframework.beans.factory.annotation.Autowired
  4. import org.springframework.stereotype.Controller
  5. import org.springframework.web.bind.annotation.RequestMapping
  6. @Controller
  7. @RequestMapping("example")
  8. class ExampleController {
  9. @Autowired
  10. lateinit var sysDeptService: ISysDeptService
  11. @RequestMapping("/test")
  12. fun test() {
  13. }
  14. }