|
@@ -68,7 +68,11 @@ public class LogisticsServiceImpl implements LogisticsService {
|
|
|
|
|
|
@Override
|
|
|
public ResponseJson certificateLogistics(Integer authId) {
|
|
|
- CertificateLogisticsVo certificateLogistics = logisticsMapper.getCertificateLogistics(authId);
|
|
|
+ List<CertificateLogisticsVo> certificateLogisticsList = logisticsMapper.getCertificateLogistics(authId);
|
|
|
+ CertificateLogisticsVo certificateLogistics=null;
|
|
|
+ if(null != certificateLogisticsList && certificateLogisticsList.size()>0){
|
|
|
+ certificateLogistics=certificateLogisticsList.get(0);
|
|
|
+ }
|
|
|
if (null != certificateLogistics) {
|
|
|
String remarksImage = certificateLogistics.getRemarksImage();
|
|
|
if (StringUtils.isNotEmpty(remarksImage)) {
|