src/main/java/com/moon/server/controller/show/MarkController.java
@@ -109,7 +109,7 @@ int count = markService.insert(entity); return success(count); return success(count, entity.getId()); } catch (Exception ex) { return fail(ex, -1); } @@ -193,6 +193,7 @@ try { UserEntity ue = tokenService.getCurrentUser(req); if (ue != null) { entity.setCreateUser(ue.getId()); entity.setUpdateUser(ue.getId()); } @@ -216,6 +217,7 @@ UserEntity ue = tokenService.getCurrentUser(req); if (ue != null) { for (MarkEntity entity : list) { entity.setCreateUser(ue.getId()); entity.setUpdateUser(ue.getId()); } }