李林
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
package com.chinaztt.mes.quality.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.chinaztt.mes.quality.entity.TestStandardParam;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * 检测标准参数
 *
 * @author cxf
 * @date 2021-04-22 09:03:13
 */
@Mapper
public interface TestStandardParamMapper extends BaseMapper<TestStandardParam> {
    /**
     * 还原删除的数据
     *
     * @param id
     * @return
     */
    int activeById(Long id);
 
    void deleteByStandardIds(@Param("ids") List<Long> ids);
}