| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.limslaboratory.pojo.Inspection; |
| | | import com.yuanchu.limslaboratory.pojo.Material; |
| | | import com.yuanchu.limslaboratory.pojo.vo.InspectDetailVo; |
| | | import com.yuanchu.limslaboratory.pojo.vo.InspectionVo; |
| | | |
| | |
| | | IPage<Map<String, Object>> selectInspectsList(Page<Object> page, String message); |
| | | |
| | | /** |
| | | * 新增检验单-->选择检验项目版本 |
| | | * @param name |
| | | * @param mcode |
| | | * @param specifications |
| | | * @return |
| | | */ |
| | | List<Integer> chooseVer(String name, String mcode, String specifications); |
| | | |
| | | /** |
| | | * 新增检验单-->选择检验项目版本-->查看该版本下我们要做的项目要求 |
| | | * @param name |
| | | * @param mcode |
| | | * @param specifications |
| | | * @param version |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> lookProByVer(String name, String mcode, String specifications, Integer version,String experiment); |
| | | |
| | | /** |
| | | * 新增检验申请表 |
| | | * @param id |
| | | * @param |
| | |
| | | */ |
| | | InspectDetailVo selectInspectsListById(Integer id); |
| | | |
| | | |
| | | /** |
| | | * 上报(更新检验单检验结果) |
| | | * 作废检验单 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | boolean updateInspectsById(Integer id); |
| | | String delInspect(Integer id); |
| | | |
| | | /** |
| | | * 保存检验项目责任人 |
| | | * @param id |
| | | * @param userProId |
| | | * @return |
| | | */ |
| | | String chooseUseProId(Integer id, Integer userProId); |
| | | |
| | | /** |
| | | * 保存设备 |
| | | * @param id |
| | | * @param equipmentId |
| | | * @return |
| | | */ |
| | | boolean chooseEquipment(Integer id, Integer equipmentId); |
| | | |
| | | List<Material> getMaterielTypeIsOne(); |
| | | |
| | | Map<String, Object> getSpecification(Integer id); |
| | | } |
| | | |