package com.oying.modules.system.mapper; import com.oying.modules.system.domain.Job; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.Set; /** * @author Z * @date 2023-06-20 */ @Mapper public interface UserJobMapper { void insertData(@Param("userId") Long userId, @Param("jobs") Set jobs); void deleteByUserId(@Param("userId") Long userId); void deleteByUserIds(@Param("userIds") Set userIds); }