liujunchi il y a 2 ans
Parent
commit
dc126a6bb6

+ 11 - 0
cooleshow-user/user-biz/src/main/java/com/yonge/cooleshow/biz/dal/vo/ActivityRegistrationVo.java

@@ -33,6 +33,17 @@ public class ActivityRegistrationVo extends ActivityRegistration{
 	@ApiModelProperty(value = "是否获奖")
 	private Boolean rewardFlag;
 
+	@ApiModelProperty("真实姓名")
+	private String realName;
+
+	public String getRealName() {
+		return realName;
+	}
+
+	public void setRealName(String realName) {
+		this.realName = realName;
+	}
+
 	public Long getStudentId() {
 		return studentId;
 	}

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

@@ -30,7 +30,7 @@
     <select id="selectPage" resultType="com.yonge.cooleshow.biz.dal.vo.ActivityRegistrationVo">
 		SELECT
         	<include refid="baseColumns" />,
-		    u.id_ as studentId,u.username_ as username,u.phone_ as phone,
+		    u.id_ as studentId,u.username_ as username,u.phone_ as phone,u.real_name_ as realName,
             <if test="param.activityType != null and param.activityType.code == 'EVALUATION'">
                 b.music_sheet_name_ as musicSheetName,b.max_score_ as maxScore,b.num_ as num,
             </if>