ExampleController.kt 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package com.gxzc.zen.controller
  2. import com.gxzc.zen.api.rec.model.SysDic
  3. import com.gxzc.zen.api.rec.service.ISysDicService
  4. import com.gxzc.zen.api.sys.mapper.SysDeptMapper
  5. import com.gxzc.zen.api.sys.model.SysDept
  6. import com.gxzc.zen.api.sys.service.ISysDeptService
  7. import com.gxzc.zen.api.usage.model.SysParam
  8. import org.slf4j.LoggerFactory
  9. import org.springframework.beans.factory.annotation.Autowired
  10. import org.springframework.stereotype.Controller
  11. import org.springframework.web.bind.annotation.RequestMapping
  12. @Controller
  13. @RequestMapping("example")
  14. class ExampleController {
  15. companion object {
  16. val logger = LoggerFactory.getLogger(ExampleController::class.java)
  17. }
  18. @Autowired
  19. lateinit var sysDeptService: ISysDeptService
  20. @Autowired
  21. lateinit var sysDicService: ISysDicService
  22. @Autowired
  23. lateinit var sysDeptMapper: SysDeptMapper
  24. // @Autowired
  25. // lateinit var sysParamService: ISysParamService
  26. @RequestMapping("/test")
  27. fun test() {
  28. val dept = SysDept().also {
  29. it.deptName = "test"
  30. it.principal = "create"
  31. it.sort = Integer(1)
  32. }
  33. // for (i in 1..1000) {
  34. // sysDeptService.insert(dept)
  35. // }
  36. sysDeptMapper.insert(dept)
  37. logger.info("count: {}", sysDeptService.custom())
  38. }
  39. @RequestMapping("/test2")
  40. fun test2() {
  41. val sysDic = SysDic().also {
  42. it.key = "hehe"
  43. it.value = "hehe"
  44. it.sort = Integer(1)
  45. }
  46. // for (i in 1..1000) {
  47. // sysDicService.insert(sysDic)
  48. // }
  49. sysDicService.insert(sysDic)
  50. // logger.info("count: {}", sysDicService.custom())
  51. }
  52. @RequestMapping("/test3")
  53. fun test3() {
  54. val sysParam = SysParam().also {
  55. it.key = "a"
  56. it.value = "b"
  57. it.sort = Integer(1)
  58. }
  59. // sysParamService.insert(sysParam)
  60. }
  61. }