球员头像隐藏设置

pull/371/head
wuyibo 2 years ago
parent 63e8b13a81
commit d825532b54

@ -136,6 +136,8 @@ public class CompetitionMembers extends BaseEntity
/** 个人照片(最新) */ /** 个人照片(最新) */
@Excel(name = "个人照片", readConverterExp = "最=新") @Excel(name = "个人照片", readConverterExp = "最=新")
private String personalPhoto; private String personalPhoto;
@Excel(name = "是否隐藏头像")
private Boolean isHideAvatar;
/** $column.columnComment */ /** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")

@ -67,7 +67,8 @@ public class CompetitionOfTeam extends BaseEntity
/** 联系人 */ /** 联系人 */
@Excel(name = "领队人") @Excel(name = "领队人")
private String contacts; private String contacts;
@Excel(name = "是否隐藏头像")
private Boolean isHideAvatar;
/** 联系人电话 */ /** 联系人电话 */
@Excel(name = "领队人电话") @Excel(name = "领队人电话")
private String contactsTel; private String contactsTel;

@ -13,4 +13,5 @@ public class CompetitionMembersScoreVo extends CompetitionMembersScore {
private String realName; private String realName;
private Long totalCount; private Long totalCount;
private Long avgCountScore; private Long avgCountScore;
private Boolean isHideAvatar;
} }

@ -38,10 +38,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="teamPosition" column="team_position"/> <result property="teamPosition" column="team_position"/>
<result property="height" column="height"/> <result property="height" column="height"/>
<result property="weight" column="weight"/> <result property="weight" column="weight"/>
<result property="isHideAvatar" column="is_hide_avatar"/>
</resultMap> </resultMap>
<sql id="selectCompetitionMembersVo"> <sql id="selectCompetitionMembersVo">
select id, user_id, role_code, competition_id, competition_team_id, score, penalty, two_points, three_points, breaks, rebound, block, is_deleted, created_by, modified_by, created_time, last_updated_time, status, user_type, competition_of_team_id, competition_nature, real_name, jersey_number, id_type, id_card_no, contacts_tel, contacts, contacts_area_code, personal_photo, is_first_launch,team_position,height,weight from competition_members select id, user_id, role_code,is_hide_avatar, competition_id, competition_team_id, score, penalty, two_points, three_points, breaks, rebound, block, is_deleted, created_by, modified_by, created_time, last_updated_time, status, user_type, competition_of_team_id, competition_nature, real_name, jersey_number, id_type, id_card_no, contacts_tel, contacts, contacts_area_code, personal_photo, is_first_launch,team_position,height,weight from competition_members
</sql> </sql>
<select id="selectCompetitionMembersList" parameterType="CompetitionMembers" resultMap="CompetitionMembersResult"> <select id="selectCompetitionMembersList" parameterType="CompetitionMembers" resultMap="CompetitionMembersResult">
@ -77,6 +78,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="personalPhoto != null and personalPhoto != ''"> and personal_photo = #{personalPhoto}</if> <if test="personalPhoto != null and personalPhoto != ''"> and personal_photo = #{personalPhoto}</if>
<if test="isFirstLaunch != null "> and is_first_launch = #{isFirstLaunch}</if> <if test="isFirstLaunch != null "> and is_first_launch = #{isFirstLaunch}</if>
<if test="teamPosition != null"> and team_position = #{teamPosition}</if> <if test="teamPosition != null"> and team_position = #{teamPosition}</if>
<if test="isHideAvatar != null"> and is_hide_avatar = #{isHideAvatar}</if>
</where> </where>
</select> </select>
@ -193,6 +195,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="teamPosition != null">team_position,</if> <if test="teamPosition != null">team_position,</if>
<if test="height != null">height,</if> <if test="height != null">height,</if>
<if test="weight != null">weight,</if> <if test="weight != null">weight,</if>
<if test="isHideAvatar != null">is_hide_avatar,</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="userId != null">#{userId},</if> <if test="userId != null">#{userId},</if>
@ -227,6 +230,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="teamPosition != null">#{teamPosition},</if> <if test="teamPosition != null">#{teamPosition},</if>
<if test="height != null">#{height},</if> <if test="height != null">#{height},</if>
<if test="weight != null">#{weight},</if> <if test="weight != null">#{weight},</if>
<if test="isHideAvatar != null">#{isHideAvatar},</if>
</trim> </trim>
</insert> </insert>
@ -265,6 +269,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="teamPosition != null">team_position = #{teamPosition},</if> <if test="teamPosition != null">team_position = #{teamPosition},</if>
<if test="height != null">height = #{height},</if> <if test="height != null">height = #{height},</if>
<if test="weight != null">weight = #{weight},</if> <if test="weight != null">weight = #{weight},</if>
<if test="isHideAvatar != null">is_hide_avatar = #{isHideAvatar},</if>
</trim> </trim>
where id = #{id} where id = #{id}
</update> </update>

@ -104,7 +104,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
sco.block, sco.block,
sco.fault, sco.fault,
sco.breaks, sco.breaks,
IFNULL( sco.is_first_launch, 0 ) AS isFirstLaunch IFNULL( sco.is_first_launch, 0 ) AS isFirstLaunch,
if(team.is_hide_avatar,team.is_hide_avatar,member.is_hide_avatar) as isHideAvatar
FROM FROM
competition_team_vs_team vs competition_team_vs_team vs
INNER JOIN competition_of_team team ON ( vs.main_team_id = team.id OR vs.guest_team_id = team.id ) and team.competition_id = vs.competition_id INNER JOIN competition_of_team team ON ( vs.main_team_id = team.id OR vs.guest_team_id = team.id ) and team.competition_id = vs.competition_id

@ -23,10 +23,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="serialNumber" column="serial_number" /> <result property="serialNumber" column="serial_number" />
<result property="teamLogo" column="team_logo"/> <result property="teamLogo" column="team_logo"/>
<result property="captain" column="captain"/> <result property="captain" column="captain"/>
<result property="isHideAvatar" column="is_hide_avatar"/>
</resultMap> </resultMap>
<sql id="selectCompetitionOfTeamVo"> <sql id="selectCompetitionOfTeamVo">
select id, competition_id, team_id, team_name, competition_group, created_time, status, last_updated_time, created_by, modified_by, is_deleted, remark, contacts, contacts_tel, contacts_area_code, serial_number,team_logo,captain from competition_of_team select id, competition_id, team_id,is_hide_avatar, team_name, competition_group, created_time, status, last_updated_time, created_by, modified_by, is_deleted, remark, contacts, contacts_tel, contacts_area_code, serial_number,team_logo,captain from competition_of_team
</sql> </sql>
<select id="selectCompetitionOfTeamById" parameterType="Long" resultMap="CompetitionOfTeamResult"> <select id="selectCompetitionOfTeamById" parameterType="Long" resultMap="CompetitionOfTeamResult">
<include refid="selectCompetitionOfTeamVo"/> <include refid="selectCompetitionOfTeamVo"/>
@ -231,6 +232,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="serialNumber != null">serial_number,</if> <if test="serialNumber != null">serial_number,</if>
<if test="teamLogo != null">team_logo,</if> <if test="teamLogo != null">team_logo,</if>
<if test="captain != null">captain,</if> <if test="captain != null">captain,</if>
<if test="isHideAvatar != null">is_hide_avatar,</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="competitionId != null">#{competitionId},</if> <if test="competitionId != null">#{competitionId},</if>
@ -250,6 +252,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="serialNumber != null">#{serialNumber},</if> <if test="serialNumber != null">#{serialNumber},</if>
<if test="teamLogo != null">#{teamLogo},</if> <if test="teamLogo != null">#{teamLogo},</if>
<if test="captain != null">#{captain},</if> <if test="captain != null">#{captain},</if>
<if test="isHideAvatar != null">#{isHideAvatar},</if>
</trim> </trim>
</insert> </insert>
@ -273,6 +276,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="serialNumber != null">serial_number = #{serialNumber},</if> <if test="serialNumber != null">serial_number = #{serialNumber},</if>
<if test="teamLogo != null"> team_logo = #{teamLogo},</if> <if test="teamLogo != null"> team_logo = #{teamLogo},</if>
<if test="captain != null"> captain = #{captain},</if> <if test="captain != null"> captain = #{captain},</if>
<if test="isHideAvatar != null">is_hide_avatar = #{isHideAvatar},</if>
</trim> </trim>
where id = #{id} where id = #{id}
</update> </update>

Loading…
Cancel
Save