| | |
| | | import com.yuanchu.mom.pojo.Material; |
| | | import com.yuanchu.mom.pojo.Specifications; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.mom.pojo.dto.SpecificationsDto; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | |
| | | /** |
| | | * 根据规格id和型号名称查询型号信息 |
| | | * @param id |
| | | * @param name |
| | | * @return |
| | | * (4级)新增-->型号 |
| | | * @param specificationsDto |
| | | */ |
| | | Specifications selectSpIdByname(Integer id, String name); |
| | | String addSpecifications(SpecificationsDto specificationsDto,Integer spId,Integer ver); |
| | | |
| | | /** |
| | | * 检验模块-->OMS管理-->成品检验-->新增(需要规格型号的Id与名称) |
| | | */ |
| | | List<Map<String, Object>> selectSpecificationIdAndName(Integer materialId); |
| | | } |