zss
2023-09-25 a3f47b5e065878e5f41699ac1c597fd9ac9c4a21
inspect-server/src/main/java/com/yuanchu/mom/mapper/RawInsProductMapper.java
@@ -1,11 +1,10 @@
package com.yuanchu.mom.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.yuanchu.mom.pojo.RawInsProduct;
import com.yuanchu.mom.mybatis_config.MyBaseMapper;
import com.yuanchu.mom.pojo.RawInsProduct;
import java.util.List;
import java.util.Map;
/**
 * 原材料申请单中的项目列表(RawInsProduct)表数据库访问层
@@ -13,14 +12,10 @@
 * @author zss
 * @since 2023-08-01 13:52:30
 */
public interface RawInsProductMapper extends BaseMapper<RawInsProduct> {
public interface RawInsProductMapper extends MyBaseMapper<RawInsProduct> {
    //根据原材料检验单id查询检验项目
    List<Integer> getresult(Integer id);
    //批量清空检验值
    void updateBatch(List<RawInsProduct> rawInsProductList);
}