课程详情api返回学员的课时学习记录

This commit is contained in:
none
2023-03-24 17:23:54 +08:00
parent 4514adb9d0
commit 2b89ed310a
8 changed files with 28 additions and 16 deletions

View File

@@ -35,11 +35,11 @@ public class FCtx {
THREAD_LOCAL.remove();
}
public static void setUserId(Integer id) {
public static void setId(Integer id) {
put(KEY_USER_ID, id);
}
public static Integer getUserId() {
public static Integer getId() {
return (Integer) get(KEY_USER_ID);
}