|
@@ -27,6 +27,7 @@
|
|
|
package com.persagy.server.syn.controllers
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject
|
|
|
+import com.persagy.base.extensions.toJson
|
|
|
import com.persagy.database.SFilter
|
|
|
import com.persagy.mybatis.SMybatisDao
|
|
|
import com.persagy.server.datacenter.models.entities.dictnew.DefClass
|
|
@@ -88,6 +89,7 @@ class TestController {
|
|
|
@Operation(summary = "造对照表数据", description = "",tags = ["001"])
|
|
|
@GetMapping(value = ["/test/analog/data"])
|
|
|
fun analogData(@RequestParam groupCode: String, @RequestBody types: Types): SBaseResponse{
|
|
|
+ logger.debug("数据= ${types.toJson()}")
|
|
|
for (type in types.types!!) {
|
|
|
val defFuncIdList = defFuncIdService.select(SFilter.eq("classCode", type), SFilter.eq("projectId", "Pj4403070003")).exec()
|
|
|
for (defFuncId in defFuncIdList){
|