Search in sources :

Example 1 with OptAttachmentReqDto

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);
}
Also used : OptAttachmentReqDto(com.paascloud.provider.model.dto.attachment.OptAttachmentReqDto)

Example 2 with 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);
}
Also used : OptAttachmentReqDto(com.paascloud.provider.model.dto.attachment.OptAttachmentReqDto) OptAttachmentRespDto(com.paascloud.provider.model.dto.attachment.OptAttachmentRespDto)

Aggregations

OptAttachmentReqDto (com.paascloud.provider.model.dto.attachment.OptAttachmentReqDto)2 OptAttachmentRespDto (com.paascloud.provider.model.dto.attachment.OptAttachmentRespDto)1