| | |
| | | * @since 2023-07-17 |
| | | */ |
| | | public interface InspectionMaterialListService extends IService<InspectionMaterialList> { |
| | | |
| | | /** |
| | | * 查询检验单里面的物料信息 |
| | | * @param insId |
| | | * @return |
| | | */ |
| | | List<InspectionMaterialList> selectInspectionMaterialListByInsId(String insId); |
| | | |
| | | /** |
| | | * 添加检验单中的检验样品 |
| | | * @param inspectionMaterialList |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | InspectionMaterialList addInspectionMaterialList(InspectionMaterialList inspectionMaterialList,String userId); |
| | | |
| | | /** |
| | | * 根据检验样品id删除样品信息 |
| | | * @param inspectionMaterialListId |
| | | * @return |
| | | */ |
| | | boolean delInspectionMaterialListByInsId(int inspectionMaterialListId); |
| | | |
| | | /** |
| | | *根据样品id修改样品信息 |
| | | * @param inspectionMaterialListId |
| | | * @param inspectionMaterialList |
| | | * @return |
| | | */ |
| | | boolean updateInspectionMaterialList( Integer inspectionMaterialListId,InspectionMaterialList inspectionMaterialList); |
| | | } |