¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.yuanchu.limslaboratory.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | 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.vo.InspectDetailVo; |
| | | import com.yuanchu.limslaboratory.pojo.vo.InspectionVo; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * ç³è¯·è¡¨(Inspection)表æå¡æ¥å£ |
| | | * |
| | | * @author zss |
| | | * @since 2023-08-03 13:03:36 |
| | | */ |
| | | public interface InspectionService extends IService<Inspection> { |
| | | |
| | | |
| | | /** |
| | | *æ¥è¯¢æ£éªç³è¯·åå表 |
| | | * @param page |
| | | * @param message |
| | | * @return |
| | | */ |
| | | IPage<Map<String, Object>> selectInspectsList(Page<Object> page, String message); |
| | | |
| | | /** |
| | | * æ°å¢æ£éªç³è¯·è¡¨ |
| | | * @param id |
| | | * @param |
| | | * @return |
| | | */ |
| | | Integer addInspect(Integer id, InspectionVo inspectionVo); |
| | | |
| | | |
| | | /** |
| | | *æ ¹æ®æ£éªåidæ¥è¯¢åæææ£éªå详æ
|
| | | * @param id |
| | | * @return |
| | | */ |
| | | InspectDetailVo selectInspectsListById(Integer id); |
| | | |
| | | /** |
| | | * 䏿¥(æ´æ°æ£éªåæ£éªç»æ) |
| | | * @param id |
| | | * @return |
| | | */ |
| | | boolean updateInspectsById(Integer id); |
| | | } |
| | | |