Commit 2bca78ac authored by liuyang's avatar liuyang

查询企业成员领取记录增加成员头像属性

parent df4474ac
......@@ -13,4 +13,5 @@ public class OrgUserReceiveRecordModel {
private LocalDateTime createTime;
private Long userId;
private String name;
private String avatarUrl;
}
......@@ -8,7 +8,8 @@
r.create_time,
c.`name` course_name,
r.user_id,
ue.`name`
ue.`name`,
ue.avatar_url
FROM org_user_receive_record r
LEFT JOIN course c on r.course_id = c.id
INNER JOIN user_ext ue on ue.user_id = r.user_id
......
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