chenrui
2025-04-03 3d6da0d6465fa63cf8b214bf7371eab4949f5488
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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);
}