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);
|
}
|