| | |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.*; |
| | | import java.util.stream.Collectors; |
| | |
| | | return "作废成功!"; |
| | | } |
| | | |
| | | //保存检验项目责任人 |
| | | @Override |
| | | public String chooseUseProId(Integer id, Integer userProId) { |
| | | InspectionProduct inspectionProduct = new InspectionProduct(); |
| | | inspectionProduct.setId(id); |
| | | inspectionProduct.setUserProId(userProId); |
| | | inspectionProductMapper.updateById(inspectionProduct); |
| | | return "保存成功!"; |
| | | } |
| | | |
| | | |
| | | } |
| | | |