maven
2026-03-19 1a71e2a0f6b51470e070e8efb5391578c0122d70
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);
 
}