| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.limslaboratory.pojo.InspectionMaterialList; |
| | | import com.yuanchu.limslaboratory.pojo.Plan; |
| | | import com.yuanchu.limslaboratory.pojo.dto.InspectionMaterialListDto; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | InspectionMaterialList addInspectionMaterialList(InspectionMaterialList inspectionMaterialList,String userId); |
| | | void addInspectionMaterialList(InspectionMaterialList inspectionMaterialList,String userId); |
| | | |
| | | /** |
| | | * 根据检验样品id删除样品信息 |
| | | * @param inspectionMaterialListId |
| | | * @return |
| | | */ |
| | | boolean delInspectionMaterialListByInsId(int inspectionMaterialListId); |
| | | void delInspectionMaterialListByInsId(int inspectionMaterialListId); |
| | | |
| | | /** |
| | | *根据样品id修改样品信息 |
| | | * @param inspectionMaterialListId |
| | | * @param inspectionMaterialList |
| | | * @param inspectionMaterialListDto |
| | | * @return |
| | | */ |
| | | boolean updateInspectionMaterialList( Integer inspectionMaterialListId,InspectionMaterialList inspectionMaterialList); |
| | | void updateInspectionMaterialList(Integer inspectionMaterialListId, InspectionMaterialListDto inspectionMaterialListDto); |
| | | } |