廖井涛
2025-09-18 7b5f1e33b4936c02fbe31d4b064ea3873da2e511
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
}