李林
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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.chinaztt.mes.plan.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.chinaztt.mes.plan.dto.MoTestStandardParamDTO;
import com.chinaztt.mes.plan.entity.MoTestStandardParam;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * 制造订单-检测标准参数
 *
 * @author cxf
 * @date 2021-04-27 13:27:40
 */
@Mapper
public interface MoTestStandardParamMapper extends BaseMapper<MoTestStandardParam> {
 
    /**
     * 还原删除的数据
     *
     * @param id
     * @return
     */
    int activeById(Long id);
 
    /**
     * 根据检测标准id查询检测规则项
     *
     * @param id
     * @return
     */
    List<MoTestStandardParamDTO> getTestStandardParam(@Param("id") Long id);
 
    /**
     * 根据moId删除检测标准子表
     *
     * @param moId
     */
    void delByMoId(Long moId);
}