| | |
| | | |
| | | 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; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | |
| | | /** |
| | | * 根据标准Id删除数据 |
| | | * @param standardsId |
| | | * @param materialId |
| | | * @return |
| | | */ |
| | | List<Integer> deleteStandardsInformation(Integer materialId); |
| | | |
| | | @Transactional(rollbackFor = Exception.class) |
| | | Integer deleteStandardsInformation(String standardsId); |
| | | Integer deleteStandardInformation(Integer standardsId); |
| | | |
| | | Integer addStandardInformation(AddStandardDto addStandardDto); |
| | | } |