| | |
| | | package com.yuanchu.limslaboratory.service; |
| | | |
| | | import com.yuanchu.limslaboratory.entity.MetricalInformation; |
| | | import com.yuanchu.limslaboratory.pojo.MetricalInformation; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface MetricalInformationService extends IService<MetricalInformation> { |
| | | |
| | | Integer addEquipmentPointInformation(MetricalInformation metricalInformation, MultipartFile file); |
| | | |
| | | List<Map<String, Object>> getListEquipmentPointInformation(); |
| | | |
| | | Integer deleteMetricalInformation(Integer metricalInformationId); |
| | | |
| | | Integer updateMetricalInformation(MetricalInformation metricalInformation, MultipartFile file); |
| | | } |