|
@@ -5,6 +5,7 @@ import com.baomidou.kisso.annotation.Login
|
|
import com.gxzc.zen.api.sys.model.SysDic
|
|
import com.gxzc.zen.api.sys.model.SysDic
|
|
import com.gxzc.zen.api.sys.service.ISysDicService
|
|
import com.gxzc.zen.api.sys.service.ISysDicService
|
|
import com.gxzc.zen.common.base.BaseController
|
|
import com.gxzc.zen.common.base.BaseController
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired
|
|
import org.springframework.web.bind.annotation.GetMapping
|
|
import org.springframework.web.bind.annotation.GetMapping
|
|
import org.springframework.web.bind.annotation.PutMapping
|
|
import org.springframework.web.bind.annotation.PutMapping
|
|
import org.springframework.web.bind.annotation.RequestMapping
|
|
import org.springframework.web.bind.annotation.RequestMapping
|
|
@@ -20,15 +21,16 @@ import org.springframework.web.bind.annotation.RestController
|
|
@RequestMapping("test")
|
|
@RequestMapping("test")
|
|
class TestController : BaseController() {
|
|
class TestController : BaseController() {
|
|
|
|
|
|
|
|
+ @Autowired
|
|
private lateinit var sysDicService: ISysDicService
|
|
private lateinit var sysDicService: ISysDicService
|
|
|
|
|
|
@GetMapping("logicDel")
|
|
@GetMapping("logicDel")
|
|
@Login(action = Action.Skip)
|
|
@Login(action = Action.Skip)
|
|
fun testLogicDelete() {
|
|
fun testLogicDelete() {
|
|
- sysDicService.deleteById(4)
|
|
|
|
|
|
+ sysDicService.deleteById(4L)
|
|
}
|
|
}
|
|
|
|
|
|
- @PutMapping
|
|
|
|
|
|
+ @PutMapping("metaObject")
|
|
@Login(action = Action.Skip)
|
|
@Login(action = Action.Skip)
|
|
fun testCustomMetaObjectHandler() {
|
|
fun testCustomMetaObjectHandler() {
|
|
sysDicService.updateById(SysDic().apply {
|
|
sysDicService.updateById(SysDic().apply {
|