Commit a8956fb27b8a12c89b010466bd34287895b78f84

Authored by Kurisu
1 parent a2ed032c

:ambulance: bug修复

- bug修复
fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/ipt/CustomerInitClueBizService.kt
... ... @@ -21,6 +21,7 @@ import org.springframework.beans.factory.annotation.Value
21 21 import org.springframework.data.redis.core.StringRedisTemplate
22 22 import org.springframework.stereotype.Service
23 23 import org.springframework.transaction.annotation.Transactional
  24 +import java.time.LocalDateTime
24 25 import java.util.*
25 26 import java.util.function.Function
26 27  
... ... @@ -179,6 +180,7 @@ class CustomerInitClueBizService(
179 180 if (idList.isNotEmpty()) {
180 181 customerInitClueService.update(
181 182 KtUpdateWrapper(CustomerInitClue::class.java)
  183 + .set(CustomerInitClue::updateTime, LocalDateTime.now())
182 184 .set(CustomerInitClue::yn, false)
183 185 .eq(CustomerInitClue::yn, true)
184 186 .`in`(CustomerInitClue::id, idList)
... ...