use of com.paascloud.provider.model.dto.attachment.OptAttachmentReqDto in project paascloud-master by paascloud.
the class OptAttachmentServiceImpl method queryAttachmentListByRefNo.
@Override
public List<OptAttachmentRespDto> queryAttachmentListByRefNo(String refNo) {
Preconditions.checkArgument(StringUtils.isNotEmpty(refNo), "关联单号不能为空");
OptAttachmentReqDto optAttachmentReqDto = new OptAttachmentReqDto();
optAttachmentReqDto.setRefNo(refNo);
return optAttachmentMapper.queryAttachment(optAttachmentReqDto);
}
use of com.paascloud.provider.model.dto.attachment.OptAttachmentReqDto in project paascloud-master by paascloud.
the class OptAttachmentServiceImpl method queryAttachmentById.
@Override
public OptAttachmentRespDto queryAttachmentById(Long id) {
Preconditions.checkArgument(id != null, "ID不能为空");
OptAttachmentReqDto optAttachmentReqDto = new OptAttachmentReqDto();
optAttachmentReqDto.setId(id);
List<OptAttachmentRespDto> optAttachmentRespDtos = optAttachmentMapper.queryAttachment(optAttachmentReqDto);
return optAttachmentRespDtos == null ? null : optAttachmentRespDtos.get(0);
}
Aggregations