gongchunyi
3 天以前 f0be60fb93e662bf6b8147b9f5f9c5a9b3e0e8b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.production.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.basic.dto.ProductModelDto;
import com.ruoyi.production.dto.ProductStructureDto;
import com.ruoyi.production.pojo.ProductStructure;
 
import java.util.List;
 
public interface ProductStructureService extends IService<ProductStructure> {
 
 
    Boolean addProductStructureDto(Integer bomId, List<ProductStructureDto> list);
 
    List<ProductStructureDto> listByBomId(Integer bomId);
 
}