¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.yuanchu.limslaboratory.service; |
| | | |
| | | import com.yuanchu.limslaboratory.pojo.Standard; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.limslaboratory.pojo.dto.AddStandardDto; |
| | | import io.swagger.models.auth.In; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | | * æå¡ç±» |
| | | * </p> |
| | | * |
| | | * @author æ±èéµ·éç½ç»ç§ææéå
¬å¸ |
| | | * @since 2023-07-11 |
| | | */ |
| | | public interface StandardService extends IService<Standard> { |
| | | |
| | | /** |
| | | * æ ¹æ®æ åIdå 餿°æ® |
| | | * @param materialId |
| | | * @return |
| | | */ |
| | | List<Integer> deleteStandardsInformation(Integer materialId); |
| | | |
| | | @Transactional(rollbackFor = Exception.class) |
| | | Integer deleteStandardInformation(Integer standardsId); |
| | | |
| | | Integer addStandardInformation(AddStandardDto addStandardDto); |
| | | |
| | | List<Map<String, Object>> getSpecificationIdAndName(String materialId); |
| | | } |