chenlu
2025-09-19 432b1133ad8c2c23138a73506b871467efcdca2e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.example.erp.mapper.sd;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.example.erp.entity.sd.BasicData;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
@Mapper
public interface BomDataMapper extends BaseMapper<BasicData> {
 
 
    Boolean saveMaterialBomDataMp(Integer id, String name, Object consume, Object price, Integer type);
 
    Integer getMaterialId(Integer id);
 
    Boolean updateMaterialBomDataMp(Integer id, String name, Object consume, Object price, Integer type);
 
    Boolean saveProductBOMMp(Object produceId, Object tabId, Object layer);
}