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