郑永安
2023-07-20 66de1a166391376d71a028c2069e90e9c509d499
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.gk.hotwork.Mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gk.hotwork.Domain.Do.SafetySelfInspectionItemQualifiedCountDO;
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,@Param("unqualified")String unqualified);
 
    SafetySelfInspectionItem getDetailById(@Param("id")Long id);
 
    SafetySelfInspectionItemQualifiedCountDO countQualifiedDataById(@Param("id") Long id);
}