use of com.paascloud.provider.model.domain.OptAttachment in project paascloud-master by paascloud.
the class OptAttachmentServiceImpl method getById.
@Override
public OptAttachment getById(Long attachmentId) {
Preconditions.checkArgument(attachmentId != null, "文件流水号不能为空");
OptAttachment optAttachment = optAttachmentMapper.selectByPrimaryKey(attachmentId);
if (PublicUtil.isEmpty(optAttachment)) {
throw new OpcBizException(ErrorCodeEnum.OPC10040008, attachmentId);
}
return optAttachment;
}
Aggregations