package com.gk.hotwork.Mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gk.hotwork.Domain.SafetyInspectionItemDeduction; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.Date; import java.util.List; @Repository public interface SafetyInspectionItemDeductionMapper extends BaseMapper { List getBySafetyInspectionItemId(@Param("safetyInspectionItemId") Long safetyInspectionItemId); void deleteById(@Param("id") Long id , @Param("updateBy") String updateBy , @Param("updateTime") Date updateTime); }