liyong
10 天以前 2d03ec79e1892248b520cf097e8a58dd82a4892f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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(ProductStructureDto productStructureDto);
 
    List<ProductStructureDto> listBybomId(Integer bomId);
 
    List<ProductStructureDto> listBybomIdIsParent(Integer bomId);
}