李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.chinaztt.mes.quality.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.chinaztt.mes.quality.entity.ReportMeasuringTool;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
/**
 * @Description : 检测汇报测量器具
 * @interfaceName : ReportMeasuringToolMapper
 * @Author : sll
 * @Date: 2022-05-23  16:11
 */
@Mapper
public interface ReportMeasuringToolMapper extends BaseMapper<ReportMeasuringTool>{
    /**
     * 根据检测汇报id删除检测汇报测量器具明细
     * @param reportId
     */
    void deleteByReportId(@Param("reportId") Long reportId);
}