public boolean deleteLogicByRecordId(Long recordId) {
		List<Long> ids = selectOrderImportDetailByRecordId(recordId)
			.stream()
			.map(orderImportDetail -> orderImportDetail.getId())
			.collect(Collectors.toList());
		return removeByIds(ids);
	}

相关文章:

  • 2021-07-06
  • 2021-05-08
  • 2021-12-02
  • 2021-12-31
  • 2021-09-30
  • 2021-11-09
  • 2022-01-04
猜你喜欢
  • 2022-12-23
  • 2021-12-06
  • 2022-12-23
  • 2021-07-14
  • 2021-11-17
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案