package com.ruoyi.basic.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.basic.pojo.StandardProductListSupplierAskBackupRel;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
public interface StandardProductListSupplierAskBackupRelMapper extends BaseMapper<StandardProductListSupplierAskBackupRel> {
|
|
/**
|
* 根据标准树下检验项id删除关联厂家备份数据
|
* @param productIds
|
* @return
|
*/
|
int batchDeleteByProductIds(@Param("productIds") List<Long> productIds);
|
|
/**
|
* 批量插入关联厂家备份数据
|
* @param list
|
* @return
|
*/
|
int batchInsertSupplierAskBackUpRel(@Param("list") List<StandardProductListSupplierAskBackupRel> list);
|
}
|