郑永安
2023-09-19 69185134fcfaf913ea45f1255677225a2cc311a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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<SafetySelfInspectionItem> {
 
    List<SafetySelfInspectionItem> getBySafetySelfInspectionId(@Param("safetySelfInspectionId") Long safetySelfInspectionId);
 
    void deleteById(@Param("id") Long id ,@Param("updateBy") String updateBy ,@Param("updateTime") Date updateTime);
 
    List<SafetySelfInspectionItem> getDetailBySafetySelfInspectionId(@Param("safetySelfInspectionId") Long safetySelfInspectionId);
 
    SafetySelfInspectionItem getDetailById(@Param("id")Long id);
}