Commit d4fe6df4 by 田超

Merge branch 'fixbug/addLabelerror' into 'master'

bug:[none]error日志

See merge request rays/pcloud-book!1424
parents 81c9d72e 85cf563b
......@@ -429,6 +429,9 @@ public class ReaderConsr {
@ParamLog("更新用户年级标签")
public void addUserGradeLabel(Long userId, Long officialAccountsId, Long labelId) {
if (null == officialAccountsId || null == userId || null == labelId) {
return;
}
try {
userLabelService.addUserGradeLabel(userId, officialAccountsId, labelId);
} catch (Exception e) {
......
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