| | |
| | | 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; |
| | | |
| | |
| | | public interface ProductStructureService extends IService<ProductStructure> { |
| | | |
| | | |
| | | List<ProductStructureDto> listByproductModelId(Long productId); |
| | | ProductModelDto listByproductModelId(Long productId); |
| | | |
| | | Boolean addProductStructureDto(ProductStructureDto productStructureDto); |
| | | |