Commit 4763ee929dfbc1f324cafd45ffbb27247802f8af

Authored by 张志伟
1 parent aff1450f

:fire: feat(*): bug修复

- bug修复
fw-valhalla-dao/src/main/java/cn/fw/valhalla/dao/mapper/CustomerInitClueMapper.kt
... ... @@ -20,6 +20,7 @@ interface CustomerInitClueMapper : BaseMapper<CustomerInitClue> {
20 20 "SELECT t1.id FROM customer_init_clue t1" +
21 21 " inner join customer t2 on t1.vin = t2.frame_no " +
22 22 " where t2.group_id=#{groupId}" +
  23 + " and t1.group_id=#{groupId}" +
23 24 " and t1.yn=1 and t2.yn=1"
24 25 )
25 26 fun queryTransferredCustomer(@Param("groupId") groupId: Long): List<Long>
... ...