| | |
| | | import org.springframework.validation.annotation.Validated; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | |
| | | import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception; |
| | |
| | | } |
| | | |
| | | @Override |
| | | public List<MesPdDocumentDO> getDocumentListByProjectIds(Collection<Long> projectIds) { |
| | | return documentMapper.selectListByProjectIds(projectIds); |
| | | } |
| | | |
| | | @Override |
| | | public void deleteByProjectId(Long projectId) { |
| | | List<MesPdDocumentDO> documents = documentMapper.selectListByProjectId(projectId); |
| | | for (MesPdDocumentDO document : documents) { |