|
|
@@ -2,9 +2,11 @@ package com.fs.company.mapper;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
import com.fs.company.domain.CompanyLobsterTagUserRel;
|
|
|
+import org.apache.ibatis.annotations.MapKey;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
|
|
|
public interface CompanyLobsterTagUserRelMapper extends BaseMapper<CompanyLobsterTagUserRel> {
|
|
|
|
|
|
@@ -12,4 +14,6 @@ public interface CompanyLobsterTagUserRelMapper extends BaseMapper<CompanyLobste
|
|
|
|
|
|
void updateBatchRelBybinding(@Param("id") Long id,@Param("flag") Integer unDelFlag);
|
|
|
|
|
|
+ @MapKey("id")
|
|
|
+ Map<String,String> selectLobsterTagsByExId(@Param("userIds") List<Long> userIds, @Param("userId") Long userId, @Param("companyId") Long companyId);
|
|
|
}
|