Commit eca2924e by 墨竹

feat:判断空

parent e520a263
...@@ -925,6 +925,10 @@ public class QywxTagApiServiceImpl implements QywxTagApiService { ...@@ -925,6 +925,10 @@ public class QywxTagApiServiceImpl implements QywxTagApiService {
@Override @Override
public void qywxMarkTag(String param) { public void qywxMarkTag(String param) {
if (StringUtils.isBlank(param)) {
logger.info("标签数据为空");
return;
}
JSONObject jsonObject = JSON.parseObject(param); JSONObject jsonObject = JSON.parseObject(param);
String corpid = jsonObject.getString("corpid"); String corpid = jsonObject.getString("corpid");
String suiteId = jsonObject.getString("suiteId"); String suiteId = jsonObject.getString("suiteId");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment