|
|
@ -2,6 +2,8 @@ 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 com.mybatisflex.annotation.Table;
|
|
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
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;
|
|
|
@ -13,6 +15,8 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|
|
|
* @author ruoyi
|
|
|
|
* @author ruoyi
|
|
|
|
* @date 2023-07-04
|
|
|
|
* @date 2023-07-04
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
|
|
|
@Table("building_team_rel")
|
|
|
|
public class BuildingTeamRel extends BaseEntity
|
|
|
|
public class BuildingTeamRel extends BaseEntity
|
|
|
|
{
|
|
|
|
{
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
@ -21,23 +25,23 @@ public class BuildingTeamRel extends BaseEntity
|
|
|
|
private Long id;
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
/** $column.columnComment */
|
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
|
|
|
private String isDeleted;
|
|
|
|
private String isDeleted;
|
|
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
/** $column.columnComment */
|
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
|
|
|
private Date createdTime;
|
|
|
|
private Date createdTime;
|
|
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
/** $column.columnComment */
|
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
|
|
|
private String createdBy;
|
|
|
|
private String createdBy;
|
|
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
/** $column.columnComment */
|
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
|
|
|
private String modifiedBy;
|
|
|
|
private String modifiedBy;
|
|
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
/** $column.columnComment */
|
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
|
|
|
private Date lastUpdatedTime;
|
|
|
|
private Date lastUpdatedTime;
|
|
|
|
|
|
|
|
|
|
|
|
/** 场馆id */
|
|
|
|
/** 场馆id */
|
|
|
@ -48,90 +52,4 @@ public class BuildingTeamRel extends BaseEntity
|
|
|
|
@Excel(name = "球队场馆关联表")
|
|
|
|
@Excel(name = "球队场馆关联表")
|
|
|
|
private Long teamId;
|
|
|
|
private Long teamId;
|
|
|
|
|
|
|
|
|
|
|
|
public void setId(Long id)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.id = id;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Long getId()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return id;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setIsDeleted(String isDeleted)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.isDeleted = isDeleted;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getIsDeleted()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return isDeleted;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCreatedTime(Date createdTime)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.createdTime = createdTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Date getCreatedTime()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return createdTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCreatedBy(String createdBy)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.createdBy = createdBy;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getCreatedBy()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return createdBy;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setModifiedBy(String modifiedBy)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.modifiedBy = modifiedBy;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getModifiedBy()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return modifiedBy;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setLastUpdatedTime(Date lastUpdatedTime)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.lastUpdatedTime = lastUpdatedTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Date getLastUpdatedTime()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return lastUpdatedTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setBuildingId(Long buildingId)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.buildingId = buildingId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Long getBuildingId()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return buildingId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setTeamId(Long teamId)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.teamId = teamId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Long getTeamId()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return teamId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|
|
|
public String toString() {
|
|
|
|
|
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
|
|
|
|
.append("id", getId())
|
|
|
|
|
|
|
|
.append("isDeleted", getIsDeleted())
|
|
|
|
|
|
|
|
.append("createdTime", getCreatedTime())
|
|
|
|
|
|
|
|
.append("createdBy", getCreatedBy())
|
|
|
|
|
|
|
|
.append("modifiedBy", getModifiedBy())
|
|
|
|
|
|
|
|
.append("lastUpdatedTime", getLastUpdatedTime())
|
|
|
|
|
|
|
|
.append("buildingId", getBuildingId())
|
|
|
|
|
|
|
|
.append("teamId", getTeamId())
|
|
|
|
|
|
|
|
.toString();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|