From 0392c333ed3d987cb2ab3dac4e1a972cff405f21 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期四, 25 四月 2024 17:42:08 +0800 Subject: [PATCH] 1. 新增后台任务关联模块 2. 新增自动评分后台任务; 3. 修复部分bug --- src/main/kotlin/cn/flightfeather/supervision/domain/ds1/repository/SceneRep.kt | 38 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 38 insertions(+), 0 deletions(-) diff --git a/src/main/kotlin/cn/flightfeather/supervision/domain/ds1/repository/SceneRep.kt b/src/main/kotlin/cn/flightfeather/supervision/domain/ds1/repository/SceneRep.kt index b47f19a..cec2e1a 100644 --- a/src/main/kotlin/cn/flightfeather/supervision/domain/ds1/repository/SceneRep.kt +++ b/src/main/kotlin/cn/flightfeather/supervision/domain/ds1/repository/SceneRep.kt @@ -1,8 +1,14 @@ package cn.flightfeather.supervision.domain.ds1.repository +import cn.flightfeather.supervision.common.exception.BizException +import cn.flightfeather.supervision.common.utils.UUIDGenerator import cn.flightfeather.supervision.domain.ds1.entity.Scense import cn.flightfeather.supervision.domain.ds1.mapper.ScenseMapper +import cn.flightfeather.supervision.domain.ds1.mapper.UserinfoMapper +import javafx.scene.Scene import org.springframework.stereotype.Repository +import tk.mybatis.mapper.entity.Example +import java.util.* /** * 鍦烘櫙淇℃伅鏁版嵁搴撶浉鍏虫搷浣� @@ -10,7 +16,16 @@ @Repository class SceneRep( private val scenseMapper: ScenseMapper, + private val userinfoMapper: UserinfoMapper, + private val subTaskRep: SubTaskRep, ) { + + fun insert(scense: Scense?):Int { + scense ?: return 0 + if (scense.guid == null) scense.guid = UUIDGenerator.generate16ShortUUID() + scense.createdate = Date() + return scenseMapper.insertSelective(scense) + } /** * 鏌ユ壘鍦烘櫙 @@ -18,4 +33,27 @@ fun findScene(topTaskId: String, sceneTypeId: Int? = null, townCode: String? = null): List<Scense?> { return scenseMapper.getSceneByType(topTaskId, sceneTypeId, townCode) } + + fun findScene(userId: String?): Scense? { + val user = userinfoMapper.selectByPrimaryKey(userId) ?: throw BizException("鐢ㄦ埛id涓嶅瓨鍦�") + return scenseMapper.selectByPrimaryKey(user.dGuid) + } + + fun findScene(sceneId: String? = null, sceneName: String? = null): Scense? { + return scenseMapper.selectOne(Scense().apply { + guid = sceneId + name = sceneName + }) + } + + fun findScenes(nameList: List<String?>): List<Scense?> { + return scenseMapper.selectByExample(Example(Scense::class.java).apply { + createCriteria().andIn("name", nameList) + }) + } + + fun findBySubTask(subTaskId: String): Scense? { + val subtask = subTaskRep.find(subTaskId) + return scenseMapper.selectByPrimaryKey(subtask?.scenseid) + } } \ No newline at end of file -- Gitblit v1.9.3