2026-05-11 6d5ce70c3e2b536c8e4b74269be70029a57cb1cc
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(ProductStructureDto productStructureDto);
 
    List<ProductStructureDto> listBybomId(Integer bomId);
 
}