| | |
| | | |
| | | import com.yuanchu.limslaboratory.pojo.Inspection; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.limslaboratory.pojo.dto.InspectionDto; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | */ |
| | | public interface InspectionService extends IService<Inspection> { |
| | | |
| | | int addInspection(Inspection inspection); |
| | | Inspection addInspection(String userName,int type); |
| | | |
| | | Map selectAllInspection(int pageSize, int countSize, Integer state); |
| | | |
| | | boolean delInspectionByInsId(String inspectionId); |
| | | |
| | | boolean subInspectionByInsId(String inspectionId); |
| | | |
| | | } |