浏览代码

update:学生列表新增邀请人信息

yonge 1 周之前
父节点
当前提交
ec8ae1a116

+ 3 - 0
cooleshow-user/user-biz/src/main/java/com/yonge/cooleshow/biz/dal/vo/StudentVo.java

@@ -105,6 +105,9 @@ public class StudentVo extends Student {
 
     @ApiModelProperty(value = "总控乐器ID")
     private String instrumentId;
+    
+    @ApiModelProperty(value = "邀请人编号")
+    private Long inviteUserId;
 
     public YesOrNoEnum getDelFlag() {
         return delFlag;

+ 1 - 0
cooleshow-user/user-biz/src/main/resources/config/mybatis/StudentMapper.xml

@@ -104,6 +104,7 @@
             u.username_ as username,
             u.gender_ as gender,
             u.birthdate_ as birthdate,
+            u.invite_user_id_ as inviteUserId,
             u.del_flag_ as delFlag,
             TIMESTAMPDIFF(YEAR, u.birthdate_, CURDATE()) as age,
             u.phone_ as phone,