| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.yuanchu.limslaboratory.pojo.Standards; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | Boolean standardsIsNull(String Id); |
| | | |
| | | IPage<Map<String, Object>> listPageStandardsInformation(Page<Object> page, String idOrNameOfStandards); |
| | | |
| | | /** |
| | | * 根据Id修改字段 |
| | | * @param standards |
| | | * @return |
| | | */ |
| | | Integer updateStandardsInformation(Standards standards); |
| | | |
| | | /** |
| | | * 根据标准Id删除数据 |
| | | * @param standardsId |
| | | * @return |
| | | */ |
| | | @Transactional(rollbackFor = Exception.class) |
| | | Integer deleteStandardsInformation(String standardsId); |
| | | } |