|
@@ -111,8 +111,8 @@ public class QpRfidTagController extends BaseController<QpRfidTag> {
|
|
|
strTag.append(tag.getTagCode()+",");
|
|
strTag.append(tag.getTagCode()+",");
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
- if(StringUtils.isNotNull(strTag)){
|
|
|
|
|
- throw new ServiceException(strTag+"已被绑定");
|
|
|
|
|
|
|
+ if(StringUtils.isNotBlank(strTag)){
|
|
|
|
|
+ throw new ServiceException("标签:"+strTag+"已被绑定!");
|
|
|
}
|
|
}
|
|
|
return ResultData.result(qpRfidTagService.deleteQpRfidTagByIds(ids));
|
|
return ResultData.result(qpRfidTagService.deleteQpRfidTagByIds(ids));
|
|
|
}
|
|
}
|