Test.kt 531 B

12345678910111213141516171819202122232425262728
  1. package com.gxzc.zen
  2. import com.gxzc.zen.base.BaseTestKt
  3. import org.junit.Test
  4. import org.springframework.beans.factory.annotation.Autowired
  5. /**
  6. *
  7. * @author NorthLan
  8. * @date 2018/1/26
  9. * @url https://noahlan.com
  10. */
  11. class Test: BaseTestKt() {
  12. @Autowired
  13. private lateinit var iSysDicService: ISysDicService
  14. @Test
  15. fun test(){
  16. val sysDic = SysDic().also {
  17. it.key = "haha"
  18. it.value = "hehe"
  19. it.sort = Integer(1)
  20. }
  21. iSysDicService.insert(sysDic)
  22. }
  23. }