|
|
@ -2,6 +2,7 @@ package com.ruoyi.system.domain;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.Date;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
import com.ruoyi.common.core.annotation.Excel;
|
|
|
|
import com.ruoyi.common.core.annotation.Excel;
|
|
|
@ -78,6 +79,11 @@ public class UserWxAqrCode extends BaseEntity
|
|
|
|
@Excel(name = "球队ID")
|
|
|
|
@Excel(name = "球队ID")
|
|
|
|
private Long teamId;
|
|
|
|
private Long teamId;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Excel(name = "赛会参赛人员ID")
|
|
|
|
|
|
|
|
private Long competitionMembersId;
|
|
|
|
|
|
|
|
@Excel(name = "赛会参赛球队ID")
|
|
|
|
|
|
|
|
private Long competitionOfTeamId;
|
|
|
|
|
|
|
|
|
|
|
|
public void setId(Long id)
|
|
|
|
public void setId(Long id)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
this.id = id;
|
|
|
|
this.id = id;
|
|
|
@ -214,24 +220,19 @@ public class UserWxAqrCode extends BaseEntity
|
|
|
|
return teamId;
|
|
|
|
return teamId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Long getCompetitionMembersId() {
|
|
|
|
public String toString() {
|
|
|
|
return competitionMembersId;
|
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
}
|
|
|
|
.append("id", getId())
|
|
|
|
|
|
|
|
.append("isDeleted", getIsDeleted())
|
|
|
|
public void setCompetitionMembersId(Long competitionMembersId) {
|
|
|
|
.append("createdTime", getCreatedTime())
|
|
|
|
this.competitionMembersId = competitionMembersId;
|
|
|
|
.append("createdBy", getCreatedBy())
|
|
|
|
}
|
|
|
|
.append("modifiedBy", getModifiedBy())
|
|
|
|
|
|
|
|
.append("lastUpdatedTime", getLastUpdatedTime())
|
|
|
|
public Long getCompetitionOfTeamId() {
|
|
|
|
.append("scene", getScene())
|
|
|
|
return competitionOfTeamId;
|
|
|
|
.append("codeImgUrl", getCodeImgUrl())
|
|
|
|
}
|
|
|
|
.append("userId", getUserId())
|
|
|
|
|
|
|
|
.append("busType", getBusType())
|
|
|
|
public void setCompetitionOfTeamId(Long competitionOfTeamId) {
|
|
|
|
.append("page", getPage())
|
|
|
|
this.competitionOfTeamId = competitionOfTeamId;
|
|
|
|
.append("width", getWidth())
|
|
|
|
|
|
|
|
.append("useDesc", getUseDesc())
|
|
|
|
|
|
|
|
.append("jerseyNo", getJerseyNo())
|
|
|
|
|
|
|
|
.append("teamId", getTeamId())
|
|
|
|
|
|
|
|
.toString();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|