MyBatis-Flex 改造
parent
387a193574
commit
be0a83612e
1
pom.xml
1
pom.xml
|
|
@ -284,7 +284,6 @@
|
|||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
<version>1.18.18</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
|
|
|||
|
|
@ -109,6 +109,25 @@
|
|||
<build>
|
||||
<finalName>${project.artifactId}</finalName>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<configuration>
|
||||
<annotationProcessorPaths>
|
||||
<path>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-processor</artifactId>
|
||||
<version>1.6.0</version>
|
||||
</path>
|
||||
<path>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
<version>1.18.18</version>
|
||||
</path>
|
||||
</annotationProcessorPaths>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
|
|
|
|||
|
|
@ -1,12 +1,11 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.*;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.*;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】对象 building_info_detail
|
||||
|
|
@ -20,6 +19,7 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
@Builder
|
||||
@ToString(callSuper = true)
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table("building_info_detail")
|
||||
public class BuildingInfoDetail extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】对象 building_label
|
||||
|
|
@ -13,6 +13,8 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
@Data
|
||||
@Table("building_label")
|
||||
public class BuildingLabel extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
@ -48,91 +50,4 @@ public class BuildingLabel extends BaseEntity
|
|||
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||
private Long featureLabelId;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setIsDeleted(Integer isDeleted)
|
||||
{
|
||||
this.isDeleted = isDeleted;
|
||||
}
|
||||
|
||||
public Integer 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 setFeatureLabelId(Long featureLabelId)
|
||||
{
|
||||
this.featureLabelId = featureLabelId;
|
||||
}
|
||||
|
||||
public Long getFeatureLabelId()
|
||||
{
|
||||
return featureLabelId;
|
||||
}
|
||||
|
||||
@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("featureLabelId", getFeatureLabelId())
|
||||
.append("remark", getRemark())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】对象 camera_info
|
||||
|
|
@ -13,6 +13,8 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
@Data
|
||||
@Table("camera_info")
|
||||
public class CameraInfo extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
@ -68,141 +70,4 @@ public class CameraInfo extends BaseEntity
|
|||
@Excel(name = "播放路径")
|
||||
private String url;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setIsDeleted(Long isDeleted)
|
||||
{
|
||||
this.isDeleted = isDeleted;
|
||||
}
|
||||
|
||||
public Long 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 setStatus(String status)
|
||||
{
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getStatus()
|
||||
{
|
||||
return status;
|
||||
}
|
||||
public void setCityCode(String cityCode)
|
||||
{
|
||||
this.cityCode = cityCode;
|
||||
}
|
||||
|
||||
public String getCityCode()
|
||||
{
|
||||
return cityCode;
|
||||
}
|
||||
public void setType(String type)
|
||||
{
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getType()
|
||||
{
|
||||
return type;
|
||||
}
|
||||
public void setName(String name)
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
return name;
|
||||
}
|
||||
public void setSn(String sn)
|
||||
{
|
||||
this.sn = sn;
|
||||
}
|
||||
|
||||
public String getSn()
|
||||
{
|
||||
return sn;
|
||||
}
|
||||
public void setBuildingId(Long buildingId)
|
||||
{
|
||||
this.buildingId = buildingId;
|
||||
}
|
||||
|
||||
public Long getBuildingId()
|
||||
{
|
||||
return buildingId;
|
||||
}
|
||||
public void setUrl(String url)
|
||||
{
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getUrl()
|
||||
{
|
||||
return url;
|
||||
}
|
||||
|
||||
@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("status", getStatus())
|
||||
.append("cityCode", getCityCode())
|
||||
.append("type", getType())
|
||||
.append("name", getName())
|
||||
.append("sn", getSn())
|
||||
.append("buildingId", getBuildingId())
|
||||
.append("remark", getRemark())
|
||||
.append("url", getUrl())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.*;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.*;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 比赛信息对象 competition
|
||||
|
|
@ -22,6 +22,7 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
@Builder
|
||||
@ToString(callSuper = true)
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table("competition")
|
||||
public class Competition extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 比赛参与人员对象 competition_members
|
||||
|
|
@ -16,6 +16,7 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @date 2022-11-03
|
||||
*/
|
||||
@Data
|
||||
@Table("competition_members")
|
||||
public class CompetitionMembers extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 赛会中-赛程-人员得分对象 competition_members_score
|
||||
|
|
@ -16,6 +16,7 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @date 2022-11-03
|
||||
*/
|
||||
@Data
|
||||
@Table("competition_members_score")
|
||||
public class CompetitionMembersScore extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 赛会中-参赛队伍对象 competition_of_team
|
||||
|
|
@ -15,6 +15,7 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @date 2022-11-03
|
||||
*/
|
||||
@Data
|
||||
@Table("competition_of_team")
|
||||
public class CompetitionOfTeam extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
|||
|
|
@ -1,13 +1,15 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.KeyType;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 赛会中-赛程结果记录对象 competition_result
|
||||
|
|
@ -16,11 +18,13 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @date 2022-11-03
|
||||
*/
|
||||
@Data
|
||||
@Table("competition_result")
|
||||
public class CompetitionResult extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
@Id(keyType = KeyType.Auto)
|
||||
private Long id;
|
||||
|
||||
/** 赛事id(competition的ID) */
|
||||
|
|
|
|||
|
|
@ -1,12 +1,9 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 赛会-权限分享对象 competition_share_permissions
|
||||
|
|
@ -15,6 +12,7 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @date 2023-07-20
|
||||
*/
|
||||
@Data
|
||||
@Table("competition_share_permissions")
|
||||
public class CompetitionSharePermissions extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.*;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.*;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 赛会中-分组对象 competition_team_group
|
||||
|
|
@ -20,6 +20,7 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
@Builder
|
||||
@ToString(callSuper = true)
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table("competition_team_group")
|
||||
public class CompetitionTeamGroup extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 赛会中-球队VS球队关系对象 competition_team_vs_team
|
||||
|
|
@ -15,6 +15,7 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @date 2022-11-03
|
||||
*/
|
||||
@Data
|
||||
@Table("competition_team_vs_team")
|
||||
public class CompetitionTeamVsTeam extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 球馆特征对象 feature_label
|
||||
|
|
@ -13,6 +13,8 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @author ruoyi
|
||||
* @date 2023-07-06
|
||||
*/
|
||||
@Data
|
||||
@Table("feature_label")
|
||||
public class FeatureLabel extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
@ -48,91 +50,4 @@ public class FeatureLabel extends BaseEntity
|
|||
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||
private Long buildingId;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setIsDeleted(Integer isDeleted)
|
||||
{
|
||||
this.isDeleted = isDeleted;
|
||||
}
|
||||
|
||||
public Integer 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 setDescription(String description)
|
||||
{
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public String getDescription()
|
||||
{
|
||||
return description;
|
||||
}
|
||||
public void setBuildingId(Long buildingId)
|
||||
{
|
||||
this.buildingId = buildingId;
|
||||
}
|
||||
|
||||
public Long getBuildingId()
|
||||
{
|
||||
return buildingId;
|
||||
}
|
||||
|
||||
@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("description", getDescription())
|
||||
.append("remark", getRemark())
|
||||
.append("buildingId", getBuildingId())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】对象 global_attachment
|
||||
|
|
@ -13,6 +13,8 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
@Data
|
||||
@Table("global_attachment")
|
||||
public class GlobalAttachment extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
@ -68,140 +70,4 @@ public class GlobalAttachment extends BaseEntity
|
|||
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||
private String consultType;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setBizType(String bizType)
|
||||
{
|
||||
this.bizType = bizType;
|
||||
}
|
||||
|
||||
public String getBizType()
|
||||
{
|
||||
return bizType;
|
||||
}
|
||||
public void setBizId(Long bizId)
|
||||
{
|
||||
this.bizId = bizId;
|
||||
}
|
||||
|
||||
public Long getBizId()
|
||||
{
|
||||
return bizId;
|
||||
}
|
||||
public void setAttachmentName(String attachmentName)
|
||||
{
|
||||
this.attachmentName = attachmentName;
|
||||
}
|
||||
|
||||
public String getAttachmentName()
|
||||
{
|
||||
return attachmentName;
|
||||
}
|
||||
public void setAttachmentType(Long attachmentType)
|
||||
{
|
||||
this.attachmentType = attachmentType;
|
||||
}
|
||||
|
||||
public Long getAttachmentType()
|
||||
{
|
||||
return attachmentType;
|
||||
}
|
||||
public void setAttachmentUrl(String attachmentUrl)
|
||||
{
|
||||
this.attachmentUrl = attachmentUrl;
|
||||
}
|
||||
|
||||
public String getAttachmentUrl()
|
||||
{
|
||||
return attachmentUrl;
|
||||
}
|
||||
public void setVersion(Long version)
|
||||
{
|
||||
this.version = version;
|
||||
}
|
||||
|
||||
public Long getVersion()
|
||||
{
|
||||
return version;
|
||||
}
|
||||
public void setIsDeleted(Long isDeleted)
|
||||
{
|
||||
this.isDeleted = isDeleted;
|
||||
}
|
||||
|
||||
public Long 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 setConsultType(String consultType)
|
||||
{
|
||||
this.consultType = consultType;
|
||||
}
|
||||
|
||||
public String getConsultType()
|
||||
{
|
||||
return consultType;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("bizType", getBizType())
|
||||
.append("bizId", getBizId())
|
||||
.append("attachmentName", getAttachmentName())
|
||||
.append("attachmentType", getAttachmentType())
|
||||
.append("attachmentUrl", getAttachmentUrl())
|
||||
.append("version", getVersion())
|
||||
.append("isDeleted", getIsDeleted())
|
||||
.append("createdTime", getCreatedTime())
|
||||
.append("createdBy", getCreatedBy())
|
||||
.append("modifiedBy", getModifiedBy())
|
||||
.append("lastUpdatedTime", getLastUpdatedTime())
|
||||
.append("consultType", getConsultType())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】对象 group_wechat
|
||||
|
|
@ -13,6 +13,8 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
@Data
|
||||
@Table("group_wechat")
|
||||
public class GroupWechat extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
@ -72,150 +74,4 @@ public class GroupWechat extends BaseEntity
|
|||
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||
private Date lastUpdatedTime;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setBuildingId(Long buildingId)
|
||||
{
|
||||
this.buildingId = buildingId;
|
||||
}
|
||||
|
||||
public Long getBuildingId()
|
||||
{
|
||||
return buildingId;
|
||||
}
|
||||
public void setGroupName(String groupName)
|
||||
{
|
||||
this.groupName = groupName;
|
||||
}
|
||||
|
||||
public String getGroupName()
|
||||
{
|
||||
return groupName;
|
||||
}
|
||||
public void setHeaderPicture(String headerPicture)
|
||||
{
|
||||
this.headerPicture = headerPicture;
|
||||
}
|
||||
|
||||
public String getHeaderPicture()
|
||||
{
|
||||
return headerPicture;
|
||||
}
|
||||
public void setGroupCode(String groupCode)
|
||||
{
|
||||
this.groupCode = groupCode;
|
||||
}
|
||||
|
||||
public String getGroupCode()
|
||||
{
|
||||
return groupCode;
|
||||
}
|
||||
public void setScanNum(String scanNum)
|
||||
{
|
||||
this.scanNum = scanNum;
|
||||
}
|
||||
|
||||
public String getScanNum()
|
||||
{
|
||||
return scanNum;
|
||||
}
|
||||
public void setServiceUser(String serviceUser)
|
||||
{
|
||||
this.serviceUser = serviceUser;
|
||||
}
|
||||
|
||||
public String getServiceUser()
|
||||
{
|
||||
return serviceUser;
|
||||
}
|
||||
public void setServiceUserQrcode(String serviceUserQrcode)
|
||||
{
|
||||
this.serviceUserQrcode = serviceUserQrcode;
|
||||
}
|
||||
|
||||
public String getServiceUserQrcode()
|
||||
{
|
||||
return serviceUserQrcode;
|
||||
}
|
||||
public void setRemarks(String remarks)
|
||||
{
|
||||
this.remarks = remarks;
|
||||
}
|
||||
|
||||
public String getRemarks()
|
||||
{
|
||||
return remarks;
|
||||
}
|
||||
public void setIsDeleted(Long isDeleted)
|
||||
{
|
||||
this.isDeleted = isDeleted;
|
||||
}
|
||||
|
||||
public Long 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;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("buildingId", getBuildingId())
|
||||
.append("groupName", getGroupName())
|
||||
.append("headerPicture", getHeaderPicture())
|
||||
.append("groupCode", getGroupCode())
|
||||
.append("scanNum", getScanNum())
|
||||
.append("serviceUser", getServiceUser())
|
||||
.append("serviceUserQrcode", getServiceUserQrcode())
|
||||
.append("remarks", getRemarks())
|
||||
.append("isDeleted", getIsDeleted())
|
||||
.append("createdTime", getCreatedTime())
|
||||
.append("createdBy", getCreatedBy())
|
||||
.append("modifiedBy", getModifiedBy())
|
||||
.append("lastUpdatedTime", getLastUpdatedTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,11 +1,14 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】对象 message
|
||||
|
|
@ -13,6 +16,8 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
@Data
|
||||
@Table("message")
|
||||
public class Message extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
|||
|
|
@ -1,15 +1,13 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import com.ruoyi.common.core.constant.Constants;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
*
|
||||
* 此类的描述:短信的封装类型。
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@Data
|
||||
public class Sms {
|
||||
/**
|
||||
* 发送内容,如果含有空格,百分数等特殊内容,请用utf8方式进行编码,最多500个文字(1个英文或数字也算1个文字)
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.*;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.*;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 球队人员对象 team_members
|
||||
|
|
@ -20,6 +20,7 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
@Builder
|
||||
@ToString(callSuper = true)
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table("team_members")
|
||||
public class TeamMembers extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】对象 training_info
|
||||
|
|
@ -13,6 +13,8 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
@Data
|
||||
@Table("training_info")
|
||||
public class TrainingInfo extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
@ -68,140 +70,4 @@ public class TrainingInfo extends BaseEntity
|
|||
@Excel(name = "培训价格")
|
||||
private String price;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setIsDeleted(Long isDeleted)
|
||||
{
|
||||
this.isDeleted = isDeleted;
|
||||
}
|
||||
|
||||
public Long 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 setTrainName(String trainName)
|
||||
{
|
||||
this.trainName = trainName;
|
||||
}
|
||||
|
||||
public String getTrainName()
|
||||
{
|
||||
return trainName;
|
||||
}
|
||||
public void setPhone(String phone)
|
||||
{
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public String getPhone()
|
||||
{
|
||||
return phone;
|
||||
}
|
||||
public void setLinkman(String linkman)
|
||||
{
|
||||
this.linkman = linkman;
|
||||
}
|
||||
|
||||
public String getLinkman()
|
||||
{
|
||||
return linkman;
|
||||
}
|
||||
public void setTrainDesc(String trainDesc)
|
||||
{
|
||||
this.trainDesc = trainDesc;
|
||||
}
|
||||
|
||||
public String getTrainDesc()
|
||||
{
|
||||
return trainDesc;
|
||||
}
|
||||
public void setBuildId(Long buildId)
|
||||
{
|
||||
this.buildId = buildId;
|
||||
}
|
||||
|
||||
public Long getBuildId()
|
||||
{
|
||||
return buildId;
|
||||
}
|
||||
public void setDefaultPicture(String defaultPicture)
|
||||
{
|
||||
this.defaultPicture = defaultPicture;
|
||||
}
|
||||
|
||||
public String getDefaultPicture()
|
||||
{
|
||||
return defaultPicture;
|
||||
}
|
||||
public void setPrice(String price)
|
||||
{
|
||||
this.price = price;
|
||||
}
|
||||
|
||||
public String getPrice()
|
||||
{
|
||||
return price;
|
||||
}
|
||||
|
||||
@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("trainName", getTrainName())
|
||||
.append("phone", getPhone())
|
||||
.append("linkman", getLinkman())
|
||||
.append("trainDesc", getTrainDesc())
|
||||
.append("buildId", getBuildId())
|
||||
.append("defaultPicture", getDefaultPicture())
|
||||
.append("price", getPrice())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】对象 user_building_rel
|
||||
|
|
@ -13,6 +13,8 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
@Data
|
||||
@Table("user_building_rel")
|
||||
public class UserBuildingRel extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
@ -48,90 +50,4 @@ public class UserBuildingRel extends BaseEntity
|
|||
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||
private Long buildingId;
|
||||
|
||||
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 setUserCode(String userCode)
|
||||
{
|
||||
this.userCode = userCode;
|
||||
}
|
||||
|
||||
public String getUserCode()
|
||||
{
|
||||
return userCode;
|
||||
}
|
||||
public void setBuildingId(Long buildingId)
|
||||
{
|
||||
this.buildingId = buildingId;
|
||||
}
|
||||
|
||||
public Long getBuildingId()
|
||||
{
|
||||
return buildingId;
|
||||
}
|
||||
|
||||
@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("userCode", getUserCode())
|
||||
.append("buildingId", getBuildingId())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,11 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.*;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.*;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】对象 user_role
|
||||
|
|
@ -20,6 +19,7 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
@Builder
|
||||
@ToString(callSuper = true)
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table("user_role")
|
||||
public class UserRole extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 微信用户小程序二维码对象 user_wx_aqr_code
|
||||
|
|
@ -14,6 +14,8 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @author ruoyi
|
||||
* @date 2022-10-20
|
||||
*/
|
||||
@Data
|
||||
@Table("user_wx_aqr_code")
|
||||
public class UserWxAqrCode extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
@ -84,155 +86,4 @@ public class UserWxAqrCode extends BaseEntity
|
|||
@Excel(name = "赛会参赛球队ID")
|
||||
private Long competitionOfTeamId;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setIsDeleted(Long isDeleted)
|
||||
{
|
||||
this.isDeleted = isDeleted;
|
||||
}
|
||||
|
||||
public Long 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 setScene(String scene)
|
||||
{
|
||||
this.scene = scene;
|
||||
}
|
||||
|
||||
public String getScene()
|
||||
{
|
||||
return scene;
|
||||
}
|
||||
public void setCodeImgUrl(String codeImgUrl)
|
||||
{
|
||||
this.codeImgUrl = codeImgUrl;
|
||||
}
|
||||
|
||||
public String getCodeImgUrl()
|
||||
{
|
||||
return codeImgUrl;
|
||||
}
|
||||
public void setUserId(Long userId)
|
||||
{
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Long getUserId()
|
||||
{
|
||||
return userId;
|
||||
}
|
||||
public void setBusType(String busType)
|
||||
{
|
||||
this.busType = busType;
|
||||
}
|
||||
|
||||
public String getBusType()
|
||||
{
|
||||
return busType;
|
||||
}
|
||||
public void setPage(String page)
|
||||
{
|
||||
this.page = page;
|
||||
}
|
||||
|
||||
public String getPage()
|
||||
{
|
||||
return page;
|
||||
}
|
||||
public void setWidth(Integer width)
|
||||
{
|
||||
this.width = width;
|
||||
}
|
||||
|
||||
public Integer getWidth()
|
||||
{
|
||||
return width;
|
||||
}
|
||||
public void setUseDesc(String useDesc)
|
||||
{
|
||||
this.useDesc = useDesc;
|
||||
}
|
||||
|
||||
public String getUseDesc()
|
||||
{
|
||||
return useDesc;
|
||||
}
|
||||
public void setJerseyNo(String jerseyNo)
|
||||
{
|
||||
this.jerseyNo = jerseyNo;
|
||||
}
|
||||
|
||||
public String getJerseyNo()
|
||||
{
|
||||
return jerseyNo;
|
||||
}
|
||||
public void setTeamId(Long teamId)
|
||||
{
|
||||
this.teamId = teamId;
|
||||
}
|
||||
|
||||
public Long getTeamId()
|
||||
{
|
||||
return teamId;
|
||||
}
|
||||
|
||||
public Long getCompetitionMembersId() {
|
||||
return competitionMembersId;
|
||||
}
|
||||
|
||||
public void setCompetitionMembersId(Long competitionMembersId) {
|
||||
this.competitionMembersId = competitionMembersId;
|
||||
}
|
||||
|
||||
public Long getCompetitionOfTeamId() {
|
||||
return competitionOfTeamId;
|
||||
}
|
||||
|
||||
public void setCompetitionOfTeamId(Long competitionOfTeamId) {
|
||||
this.competitionOfTeamId = competitionOfTeamId;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,11 +1,12 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 球队管理对象 basketball_team
|
||||
|
|
@ -13,6 +14,8 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @author ruoyi
|
||||
* @date 2022-08-30
|
||||
*/
|
||||
@Data
|
||||
@Table("basketball_team")
|
||||
public class WxBasketballTeam extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
@ -69,151 +72,4 @@ public class WxBasketballTeam extends BaseEntity
|
|||
/** 球队logo */
|
||||
private String teamLogo;
|
||||
|
||||
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 setTeamName(String teamName)
|
||||
{
|
||||
this.teamName = teamName;
|
||||
}
|
||||
|
||||
public String getTeamName()
|
||||
{
|
||||
return teamName;
|
||||
}
|
||||
public void setTeamDes(String teamDes)
|
||||
{
|
||||
this.teamDes = teamDes;
|
||||
}
|
||||
|
||||
public String getTeamDes()
|
||||
{
|
||||
return teamDes;
|
||||
}
|
||||
public void setBuildId(Long buildId)
|
||||
{
|
||||
this.buildId = buildId;
|
||||
}
|
||||
|
||||
public Long getBuildId()
|
||||
{
|
||||
return buildId;
|
||||
}
|
||||
public void setDefaultPicture(String defaultPicture)
|
||||
{
|
||||
this.defaultPicture = defaultPicture;
|
||||
}
|
||||
|
||||
public String getDefaultPicture()
|
||||
{
|
||||
return defaultPicture;
|
||||
}
|
||||
public void setBuildingName(String buildingName)
|
||||
{
|
||||
this.buildingName = buildingName;
|
||||
}
|
||||
|
||||
public String getBuildingName()
|
||||
{
|
||||
return buildingName;
|
||||
}
|
||||
public void setCreatedId(Long createdId)
|
||||
{
|
||||
this.createdId = createdId;
|
||||
}
|
||||
|
||||
public Long getCreatedId()
|
||||
{
|
||||
return createdId;
|
||||
}
|
||||
public void setContactTel(String contactTel)
|
||||
{
|
||||
this.contactTel = contactTel;
|
||||
}
|
||||
|
||||
public String getContactTel()
|
||||
{
|
||||
return contactTel;
|
||||
}
|
||||
public void setTeamLogo(String teamLogo)
|
||||
{
|
||||
this.teamLogo = teamLogo;
|
||||
}
|
||||
|
||||
public String getTeamLogo()
|
||||
{
|
||||
return teamLogo;
|
||||
}
|
||||
|
||||
@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("teamName", getTeamName())
|
||||
.append("teamDes", getTeamDes())
|
||||
.append("remark", getRemark())
|
||||
.append("buildId", getBuildId())
|
||||
.append("defaultPicture", getDefaultPicture())
|
||||
.append("buildingName", getBuildingName())
|
||||
.append("createdId", getCreatedId())
|
||||
.append("contactTel", getContactTel())
|
||||
.append("teamLogo", getTeamLogo())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,13 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 球场管理对象 building_info
|
||||
|
|
@ -14,6 +15,8 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @author ruoyi
|
||||
* @date 2022-08-30
|
||||
*/
|
||||
@Data
|
||||
@Table("building_info")
|
||||
public class WxBuildingInfo extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
@ -111,241 +114,4 @@ public class WxBuildingInfo extends BaseEntity
|
|||
@Excel(name = "描述")
|
||||
private String desc;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setIsDeleted(Integer isDeleted)
|
||||
{
|
||||
this.isDeleted = isDeleted;
|
||||
}
|
||||
|
||||
public Integer 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 setBuildingName(String buildingName)
|
||||
{
|
||||
this.buildingName = buildingName;
|
||||
}
|
||||
|
||||
public String getBuildingName()
|
||||
{
|
||||
return buildingName;
|
||||
}
|
||||
public void setAddress(String address)
|
||||
{
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public String getAddress()
|
||||
{
|
||||
return address;
|
||||
}
|
||||
public void setLongitude(BigDecimal longitude)
|
||||
{
|
||||
this.longitude = longitude;
|
||||
}
|
||||
|
||||
public BigDecimal getLongitude()
|
||||
{
|
||||
return longitude;
|
||||
}
|
||||
public void setLatitude(BigDecimal latitude)
|
||||
{
|
||||
this.latitude = latitude;
|
||||
}
|
||||
|
||||
public BigDecimal getLatitude()
|
||||
{
|
||||
return latitude;
|
||||
}
|
||||
public void setProvinceCode(String provinceCode)
|
||||
{
|
||||
this.provinceCode = provinceCode;
|
||||
}
|
||||
|
||||
public String getProvinceCode()
|
||||
{
|
||||
return provinceCode;
|
||||
}
|
||||
public void setCityCode(String cityCode)
|
||||
{
|
||||
this.cityCode = cityCode;
|
||||
}
|
||||
|
||||
public String getCityCode()
|
||||
{
|
||||
return cityCode;
|
||||
}
|
||||
public void setCountyCode(String countyCode)
|
||||
{
|
||||
this.countyCode = countyCode;
|
||||
}
|
||||
|
||||
public String getCountyCode()
|
||||
{
|
||||
return countyCode;
|
||||
}
|
||||
public void setCityName(String cityName)
|
||||
{
|
||||
this.cityName = cityName;
|
||||
}
|
||||
|
||||
public String getCityName()
|
||||
{
|
||||
return cityName;
|
||||
}
|
||||
public void setDefaultPicture(String defaultPicture)
|
||||
{
|
||||
this.defaultPicture = defaultPicture;
|
||||
}
|
||||
|
||||
public String getDefaultPicture()
|
||||
{
|
||||
return defaultPicture;
|
||||
}
|
||||
public void setIsSupportlive(Boolean isSupportlive)
|
||||
{
|
||||
this.isSupportlive = isSupportlive;
|
||||
}
|
||||
|
||||
public Boolean getIsSupportlive()
|
||||
{
|
||||
return isSupportlive;
|
||||
}
|
||||
public void setStatus(Integer status)
|
||||
{
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getStatus()
|
||||
{
|
||||
return status;
|
||||
}
|
||||
public void setRejectReason(String rejectReason)
|
||||
{
|
||||
this.rejectReason = rejectReason;
|
||||
}
|
||||
|
||||
public String getRejectReason()
|
||||
{
|
||||
return rejectReason;
|
||||
}
|
||||
public void setIsOpen(Boolean isOpen)
|
||||
{
|
||||
this.isOpen = isOpen;
|
||||
}
|
||||
|
||||
public Boolean getIsOpen()
|
||||
{
|
||||
return isOpen;
|
||||
}
|
||||
public void setMittelkurs(String mittelkurs)
|
||||
{
|
||||
this.mittelkurs = mittelkurs;
|
||||
}
|
||||
|
||||
public String getMittelkurs()
|
||||
{
|
||||
return mittelkurs;
|
||||
}
|
||||
public void setChatGroupUrl(String chatGroupUrl)
|
||||
{
|
||||
this.chatGroupUrl = chatGroupUrl;
|
||||
}
|
||||
|
||||
public String getChatGroupUrl()
|
||||
{
|
||||
return chatGroupUrl;
|
||||
}
|
||||
public void setCreatedId(Long createdId)
|
||||
{
|
||||
this.createdId = createdId;
|
||||
}
|
||||
|
||||
public Long getCreatedId()
|
||||
{
|
||||
return createdId;
|
||||
}
|
||||
public void setDesc(String desc)
|
||||
{
|
||||
this.desc = desc;
|
||||
}
|
||||
|
||||
public String getDesc()
|
||||
{
|
||||
return desc;
|
||||
}
|
||||
|
||||
@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("buildingName", getBuildingName())
|
||||
.append("address", getAddress())
|
||||
.append("longitude", getLongitude())
|
||||
.append("latitude", getLatitude())
|
||||
.append("provinceCode", getProvinceCode())
|
||||
.append("cityCode", getCityCode())
|
||||
.append("countyCode", getCountyCode())
|
||||
.append("remark", getRemark())
|
||||
.append("cityName", getCityName())
|
||||
.append("defaultPicture", getDefaultPicture())
|
||||
.append("isSupportlive", getIsSupportlive())
|
||||
.append("status", getStatus())
|
||||
.append("rejectReason", getRejectReason())
|
||||
.append("isOpen", getIsOpen())
|
||||
.append("mittelkurs", getMittelkurs())
|
||||
.append("chatGroupUrl", getChatGroupUrl())
|
||||
.append("createdId", getCreatedId())
|
||||
.append("desc", getDesc())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,13 @@
|
|||
package com.ruoyi.system.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.core.annotation.Excel;
|
||||
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 微信用户对象 user_info
|
||||
|
|
@ -14,6 +15,8 @@ import com.ruoyi.common.core.web.domain.BaseEntity;
|
|||
* @author 吴一博
|
||||
* @date 2022-08-30
|
||||
*/
|
||||
@Data
|
||||
@Table("user_info")
|
||||
public class WxUser extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
@ -112,240 +115,4 @@ public class WxUser extends BaseEntity
|
|||
@Excel(name = "真实姓名")
|
||||
private String realName;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setIsDeleted(Integer isDeleted)
|
||||
{
|
||||
this.isDeleted = isDeleted;
|
||||
}
|
||||
|
||||
public Integer 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 setLoginName(String loginName)
|
||||
{
|
||||
this.loginName = loginName;
|
||||
}
|
||||
|
||||
public String getLoginName()
|
||||
{
|
||||
return loginName;
|
||||
}
|
||||
public void setPassWord(String passWord)
|
||||
{
|
||||
this.passWord = passWord;
|
||||
}
|
||||
|
||||
public String getPassWord()
|
||||
{
|
||||
return passWord;
|
||||
}
|
||||
public void setRole(String role)
|
||||
{
|
||||
this.role = role;
|
||||
}
|
||||
|
||||
public String getRole()
|
||||
{
|
||||
return role;
|
||||
}
|
||||
public void setOpenid(String openid)
|
||||
{
|
||||
this.openid = openid;
|
||||
}
|
||||
|
||||
public String getOpenid()
|
||||
{
|
||||
return openid;
|
||||
}
|
||||
public void setAvatar(String avatar)
|
||||
{
|
||||
this.avatar = avatar;
|
||||
}
|
||||
|
||||
public String getAvatar()
|
||||
{
|
||||
return avatar;
|
||||
}
|
||||
public void setGender(Integer gender)
|
||||
{
|
||||
this.gender = gender;
|
||||
}
|
||||
|
||||
public Integer getGender()
|
||||
{
|
||||
return gender;
|
||||
}
|
||||
public void setUserName(String userName)
|
||||
{
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public String getUserName()
|
||||
{
|
||||
return userName;
|
||||
}
|
||||
public void setTelephone(String telephone)
|
||||
{
|
||||
this.telephone = telephone;
|
||||
}
|
||||
|
||||
public String getTelephone()
|
||||
{
|
||||
return telephone;
|
||||
}
|
||||
public void setBirthday(Date birthday)
|
||||
{
|
||||
this.birthday = birthday;
|
||||
}
|
||||
|
||||
public Date getBirthday()
|
||||
{
|
||||
return birthday;
|
||||
}
|
||||
public void setHeight(Long height)
|
||||
{
|
||||
this.height = height;
|
||||
}
|
||||
|
||||
public Long getHeight()
|
||||
{
|
||||
return height;
|
||||
}
|
||||
public void setWeight(BigDecimal weight)
|
||||
{
|
||||
this.weight = weight;
|
||||
}
|
||||
|
||||
public BigDecimal getWeight()
|
||||
{
|
||||
return weight;
|
||||
}
|
||||
public void setTeamPosition(String teamPosition)
|
||||
{
|
||||
this.teamPosition = teamPosition;
|
||||
}
|
||||
|
||||
public String getTeamPosition()
|
||||
{
|
||||
return teamPosition;
|
||||
}
|
||||
public void setTag(String tag)
|
||||
{
|
||||
this.tag = tag;
|
||||
}
|
||||
|
||||
public String getTag()
|
||||
{
|
||||
return tag;
|
||||
}
|
||||
public void setEnabled(Integer enabled)
|
||||
{
|
||||
this.enabled = enabled;
|
||||
}
|
||||
|
||||
public Integer getEnabled()
|
||||
{
|
||||
return enabled;
|
||||
}
|
||||
public void setUnionid(String unionid)
|
||||
{
|
||||
this.unionid = unionid;
|
||||
}
|
||||
|
||||
public String getUnionid()
|
||||
{
|
||||
return unionid;
|
||||
}
|
||||
public void setOfficialAccountOpenid(String officialAccountOpenid)
|
||||
{
|
||||
this.officialAccountOpenid = officialAccountOpenid;
|
||||
}
|
||||
|
||||
public String getOfficialAccountOpenid()
|
||||
{
|
||||
return officialAccountOpenid;
|
||||
}
|
||||
public void setRealName(String realName)
|
||||
{
|
||||
this.realName = realName;
|
||||
}
|
||||
|
||||
public String getRealName()
|
||||
{
|
||||
return realName;
|
||||
}
|
||||
|
||||
@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("loginName", getLoginName())
|
||||
.append("passWord", getPassWord())
|
||||
.append("role", getRole())
|
||||
.append("openid", getOpenid())
|
||||
.append("avatar", getAvatar())
|
||||
.append("gender", getGender())
|
||||
.append("userName", getUserName())
|
||||
.append("telephone", getTelephone())
|
||||
.append("birthday", getBirthday())
|
||||
.append("height", getHeight())
|
||||
.append("weight", getWeight())
|
||||
.append("teamPosition", getTeamPosition())
|
||||
.append("tag", getTag())
|
||||
.append("enabled", getEnabled())
|
||||
.append("unionid", getUnionid())
|
||||
.append("officialAccountOpenid", getOfficialAccountOpenid())
|
||||
.append("realName", getRealName())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.BuildingInfoDetail;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-06
|
||||
*/
|
||||
public interface BuildingInfoDetailMapper
|
||||
public interface BuildingInfoDetailMapper extends BaseMapper<BuildingInfoDetail>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.BuildingLabel;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface BuildingLabelMapper
|
||||
public interface BuildingLabelMapper extends BaseMapper<BuildingLabel>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.BuildingTeamRel;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface BuildingTeamRelMapper
|
||||
public interface BuildingTeamRelMapper extends BaseMapper<BuildingTeamRel>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.CameraInfo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface CameraInfoMapper
|
||||
public interface CameraInfoMapper extends BaseMapper<CameraInfo>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,17 +1,19 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.Competition;
|
||||
import com.ruoyi.system.domain.vo.CompetitionExcleVo;
|
||||
import com.ruoyi.system.domain.vo.CompetitionVo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 比赛信息Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-11-02
|
||||
*/
|
||||
public interface CompetitionMapper
|
||||
public interface CompetitionMapper extends BaseMapper<Competition>
|
||||
{
|
||||
/**
|
||||
* 查询比赛信息
|
||||
|
|
|
|||
|
|
@ -1,17 +1,19 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.CompetitionMembers;
|
||||
import com.ruoyi.system.domain.vo.CompetitionMembersVo;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 比赛参与人员Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-11-03
|
||||
*/
|
||||
public interface CompetitionMembersMapper
|
||||
public interface CompetitionMembersMapper extends BaseMapper<CompetitionMembers>
|
||||
{
|
||||
/**
|
||||
* 查询比赛参与人员
|
||||
|
|
|
|||
|
|
@ -1,18 +1,19 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.CompetitionMembersScore;
|
||||
import com.ruoyi.system.domain.vo.CompetitionMembersScoreVo;
|
||||
import com.ruoyi.system.domain.vo.PersonalCareerVo;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 赛会中-赛程-人员得分Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-11-03
|
||||
*/
|
||||
public interface CompetitionMembersScoreMapper
|
||||
public interface CompetitionMembersScoreMapper extends BaseMapper<CompetitionMembersScore>
|
||||
{
|
||||
/**
|
||||
* 查询赛会中-赛程-人员得分
|
||||
|
|
|
|||
|
|
@ -1,17 +1,19 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.CompetitionOfTeam;
|
||||
import com.ruoyi.system.domain.vo.CompetitionOfTeamVo;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 赛会中-参赛队伍Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-11-03
|
||||
*/
|
||||
public interface CompetitionOfTeamMapper
|
||||
public interface CompetitionOfTeamMapper extends BaseMapper<CompetitionOfTeam>
|
||||
{
|
||||
/**
|
||||
* 查询赛会中-参赛队伍
|
||||
|
|
|
|||
|
|
@ -1,17 +1,19 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.CompetitionResult;
|
||||
import com.ruoyi.system.domain.vo.CompetitionResultVo;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 赛会中-赛程结果记录Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-11-03
|
||||
*/
|
||||
public interface CompetitionResultMapper
|
||||
public interface CompetitionResultMapper extends BaseMapper<CompetitionResult>
|
||||
{
|
||||
/**
|
||||
* 查询赛会中-赛程结果记录
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.CompetitionSharePermissions;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 赛会-权限分享Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-20
|
||||
*/
|
||||
public interface CompetitionSharePermissionsMapper
|
||||
public interface CompetitionSharePermissionsMapper extends BaseMapper<CompetitionSharePermissions>
|
||||
{
|
||||
/**
|
||||
* 查询赛会-权限分享
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.CompetitionTeamGroup;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 赛会中-分组Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-11-03
|
||||
*/
|
||||
public interface CompetitionTeamGroupMapper
|
||||
public interface CompetitionTeamGroupMapper extends BaseMapper<CompetitionTeamGroup>
|
||||
{
|
||||
/**
|
||||
* 查询赛会中-分组
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.CompetitionTeamVsTeam;
|
||||
import com.ruoyi.system.domain.vo.CompetitionTeamIntegralVo;
|
||||
import com.ruoyi.system.domain.vo.CompetitionTeamVsTeamVo;
|
||||
import com.ruoyi.system.service.ICompetitionResultService;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 赛会中-球队VS球队关系Mapper接口
|
||||
|
|
@ -13,7 +13,7 @@ import org.apache.ibatis.annotations.Param;
|
|||
* @author ruoyi
|
||||
* @date 2022-11-03
|
||||
*/
|
||||
public interface CompetitionTeamVsTeamMapper
|
||||
public interface CompetitionTeamVsTeamMapper extends BaseMapper<CompetitionTeamVsTeam>
|
||||
{
|
||||
/**
|
||||
* 查询赛会中-球队VS球队关系
|
||||
|
|
@ -80,5 +80,5 @@ public interface CompetitionTeamVsTeamMapper
|
|||
|
||||
int competitionVsTeamStatusUpdate(CompetitionTeamVsTeam competitionTeamVsTeam);
|
||||
|
||||
List<CompetitionTeamVsTeamVo> getTodaySchedule(ICompetitionResultService competitionResultService);
|
||||
List<CompetitionTeamVsTeamVo> getTodaySchedule(CompetitionTeamVsTeam teamVsTeam);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.FeatureLabel;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 球馆特征Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-06
|
||||
*/
|
||||
public interface FeatureLabelMapper
|
||||
public interface FeatureLabelMapper extends BaseMapper<FeatureLabel>
|
||||
{
|
||||
/**
|
||||
* 查询球馆特征
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.GlobalAttachment;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface GlobalAttachmentMapper
|
||||
public interface GlobalAttachmentMapper extends BaseMapper<GlobalAttachment>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.GroupWechat;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface GroupWechatMapper
|
||||
public interface GroupWechatMapper extends BaseMapper<GroupWechat>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.Message;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface MessageMapper
|
||||
public interface MessageMapper extends BaseMapper<Message>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,18 +1,20 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.TeamMembers;
|
||||
import com.ruoyi.system.domain.vo.TeamMembersResponse;
|
||||
import com.ruoyi.system.domain.vo.TeamMembersVo;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 球队人员Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-11-03
|
||||
*/
|
||||
public interface TeamMembersMapper
|
||||
public interface TeamMembersMapper extends BaseMapper<TeamMembers>
|
||||
{
|
||||
/**
|
||||
* 查询球队人员
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.TrainingInfo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface TrainingInfoMapper
|
||||
public interface TrainingInfoMapper extends BaseMapper<TrainingInfo>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.UserBuildingRel;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface UserBuildingRelMapper
|
||||
public interface UserBuildingRelMapper extends BaseMapper<UserBuildingRel>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.UserRole;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface UserRoleMapper
|
||||
public interface UserRoleMapper extends BaseMapper<UserRole>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,16 +1,18 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.UserWxAqrCode;
|
||||
import com.ruoyi.system.domain.vo.UserWxAqrCodeVo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 微信用户小程序二维码Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-10-18
|
||||
*/
|
||||
public interface UserWxAqrCodeMapper
|
||||
public interface UserWxAqrCodeMapper extends BaseMapper<UserWxAqrCode>
|
||||
{
|
||||
/**
|
||||
* 查询微信用户小程序二维码
|
||||
|
|
|
|||
|
|
@ -1,16 +1,18 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.WxBasketballTeam;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 球队管理Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-08-30
|
||||
*/
|
||||
public interface WxBasketballTeamMapper
|
||||
public interface WxBasketballTeamMapper extends BaseMapper<WxBasketballTeam>
|
||||
{
|
||||
/**
|
||||
* 查询球队管理
|
||||
|
|
|
|||
|
|
@ -1,17 +1,19 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.WxBuildingInfo;
|
||||
import com.ruoyi.system.domain.vo.BuildingInfoRequest;
|
||||
import com.ruoyi.system.domain.vo.BuildingInfoResponse;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 球场管理Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-08-30
|
||||
*/
|
||||
public interface WxBuildingInfoMapper
|
||||
public interface WxBuildingInfoMapper extends BaseMapper<WxBuildingInfo>
|
||||
{
|
||||
/**
|
||||
* 查询球场管理
|
||||
|
|
|
|||
|
|
@ -1,16 +1,18 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.BaseMapper;
|
||||
import com.ruoyi.system.domain.WxUser;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 微信用户Mapper接口
|
||||
*
|
||||
* @author 吴一博
|
||||
* @date 2022-08-30
|
||||
*/
|
||||
public interface WxUserMapper
|
||||
public interface WxUserMapper extends BaseMapper<WxUser>
|
||||
{
|
||||
/**
|
||||
* 查询微信用户
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.BuildingInfoDetail;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-06
|
||||
*/
|
||||
public interface IBuildingInfoDetailService
|
||||
public interface IBuildingInfoDetailService extends IService<BuildingInfoDetail>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.BuildingLabel;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface IBuildingLabelService
|
||||
public interface IBuildingLabelService extends IService<BuildingLabel>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.BuildingTeamRel;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface IBuildingTeamRelService
|
||||
public interface IBuildingTeamRelService extends IService<BuildingTeamRel>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.CameraInfo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface ICameraInfoService
|
||||
public interface ICameraInfoService extends IService<CameraInfo>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,9 +1,10 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.CompetitionMembersScore;
|
||||
import com.ruoyi.system.domain.vo.CompetitionMembersScoreVo;
|
||||
import com.ruoyi.system.domain.vo.PersonalCareerVo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 赛会中-赛程-人员得分Service接口
|
||||
|
|
@ -11,7 +12,7 @@ import com.ruoyi.system.domain.vo.PersonalCareerVo;
|
|||
* @author ruoyi
|
||||
* @date 2022-11-03
|
||||
*/
|
||||
public interface ICompetitionMembersScoreService
|
||||
public interface ICompetitionMembersScoreService extends IService<CompetitionMembersScore>
|
||||
{
|
||||
/**
|
||||
* 查询赛会中-赛程-人员得分
|
||||
|
|
|
|||
|
|
@ -1,16 +1,18 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.CompetitionMembers;
|
||||
import com.ruoyi.system.domain.vo.CompetitionMembersVo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 比赛参与人员Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-11-03
|
||||
*/
|
||||
public interface ICompetitionMembersService
|
||||
public interface ICompetitionMembersService extends IService<CompetitionMembers>
|
||||
{
|
||||
/**
|
||||
* 查询比赛参与人员
|
||||
|
|
|
|||
|
|
@ -1,16 +1,18 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.CompetitionOfTeam;
|
||||
import com.ruoyi.system.domain.vo.CompetitionOfTeamVo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 赛会中-参赛队伍Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-11-03
|
||||
*/
|
||||
public interface ICompetitionOfTeamService
|
||||
public interface ICompetitionOfTeamService extends IService<CompetitionOfTeam>
|
||||
{
|
||||
/**
|
||||
* 查询赛会中-参赛队伍
|
||||
|
|
|
|||
|
|
@ -1,17 +1,19 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.CompetitionResult;
|
||||
import com.ruoyi.system.domain.vo.CompetitionResultVo;
|
||||
import com.ruoyi.system.domain.vo.CompetitionVsRecordVo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 赛会中-赛程结果记录Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-11-03
|
||||
*/
|
||||
public interface ICompetitionResultService
|
||||
public interface ICompetitionResultService extends IService<CompetitionResult>
|
||||
{
|
||||
/**
|
||||
* 查询赛会中-赛程结果记录
|
||||
|
|
|
|||
|
|
@ -1,8 +1,6 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.api.domain.vo.WxAppletsCodeVo;
|
||||
import com.ruoyi.system.domain.Competition;
|
||||
import com.ruoyi.system.domain.vo.CompetitionExcleVo;
|
||||
|
|
@ -10,7 +8,9 @@ import com.ruoyi.system.domain.vo.CompetitionResponse;
|
|||
import com.ruoyi.system.domain.vo.CompetitionVo;
|
||||
import org.apache.poi.ss.usermodel.PictureData;
|
||||
import org.apache.poi.ss.usermodel.Sheet;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 比赛信息Service接口
|
||||
|
|
@ -18,7 +18,7 @@ import org.springframework.transaction.annotation.Transactional;
|
|||
* @author ruoyi
|
||||
* @date 2022-11-02
|
||||
*/
|
||||
public interface ICompetitionService
|
||||
public interface ICompetitionService extends IService<Competition>
|
||||
{
|
||||
/**
|
||||
* 查询比赛信息
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.CompetitionSharePermissions;
|
||||
import com.ruoyi.system.domain.vo.CompetitionSharePermissionsVo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 赛会-权限分享Service接口
|
||||
|
|
@ -10,7 +11,7 @@ import com.ruoyi.system.domain.vo.CompetitionSharePermissionsVo;
|
|||
* @author ruoyi
|
||||
* @date 2023-07-20
|
||||
*/
|
||||
public interface ICompetitionSharePermissionsService
|
||||
public interface ICompetitionSharePermissionsService extends IService<CompetitionSharePermissions>
|
||||
{
|
||||
/**
|
||||
* 查询赛会-权限分享
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@ package com.ruoyi.system.service;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.CompetitionSharePermissions;
|
||||
import com.ruoyi.system.domain.CompetitionTeamGroup;
|
||||
import com.ruoyi.system.domain.vo.TeamGroupRequest;
|
||||
|
||||
|
|
@ -11,7 +13,7 @@ import com.ruoyi.system.domain.vo.TeamGroupRequest;
|
|||
* @author ruoyi
|
||||
* @date 2022-11-03
|
||||
*/
|
||||
public interface ICompetitionTeamGroupService
|
||||
public interface ICompetitionTeamGroupService extends IService<CompetitionTeamGroup>
|
||||
{
|
||||
/**
|
||||
* 查询赛会中-分组
|
||||
|
|
|
|||
|
|
@ -1,19 +1,20 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.CompetitionResult;
|
||||
import com.ruoyi.system.domain.CompetitionTeamVsTeam;
|
||||
import com.ruoyi.system.domain.vo.*;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 赛会中-球队VS球队关系Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-11-03
|
||||
*/
|
||||
public interface ICompetitionTeamVsTeamService
|
||||
public interface ICompetitionTeamVsTeamService extends IService<CompetitionTeamVsTeam>
|
||||
{
|
||||
/**
|
||||
* 查询赛会中-球队VS球队关系
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.FeatureLabel;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 球馆特征Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-06
|
||||
*/
|
||||
public interface IFeatureLabelService
|
||||
public interface IFeatureLabelService extends IService<FeatureLabel>
|
||||
{
|
||||
/**
|
||||
* 查询球馆特征
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.GlobalAttachment;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface IGlobalAttachmentService
|
||||
public interface IGlobalAttachmentService extends IService<GlobalAttachment>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.GroupWechat;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface IGroupWechatService
|
||||
public interface IGroupWechatService extends IService<GroupWechat>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.Message;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface IMessageService
|
||||
public interface IMessageService extends IService<Message>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,17 +1,19 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.TeamMembers;
|
||||
import com.ruoyi.system.domain.vo.TeamMembersResponse;
|
||||
import com.ruoyi.system.domain.vo.TeamMembersVo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 球队人员Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-11-03
|
||||
*/
|
||||
public interface ITeamMembersService
|
||||
public interface ITeamMembersService extends IService<TeamMembers>
|
||||
{
|
||||
/**
|
||||
* 查询球队人员
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.TrainingInfo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface ITrainingInfoService
|
||||
public interface ITrainingInfoService extends IService<TrainingInfo>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.UserBuildingRel;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface IUserBuildingRelService
|
||||
public interface IUserBuildingRelService extends IService<UserBuildingRel>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.UserRole;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2023-07-04
|
||||
*/
|
||||
public interface IUserRoleService
|
||||
public interface IUserRoleService extends IService<UserRole>
|
||||
{
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
|
|
|
|||
|
|
@ -1,16 +1,18 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.UserWxAqrCode;
|
||||
import com.ruoyi.system.domain.vo.UserWxAqrCodeVo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 微信用户小程序二维码Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-10-18
|
||||
*/
|
||||
public interface IUserWxAqrCodeService
|
||||
public interface IUserWxAqrCodeService extends IService<UserWxAqrCode>
|
||||
{
|
||||
/**
|
||||
* 查询微信用户小程序二维码
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.WxBasketballTeam;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 球队管理Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-08-30
|
||||
*/
|
||||
public interface IWxBasketballTeamService
|
||||
public interface IWxBasketballTeamService extends IService<WxBasketballTeam>
|
||||
{
|
||||
/**
|
||||
* 查询球队管理
|
||||
|
|
|
|||
|
|
@ -1,17 +1,19 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.WxBuildingInfo;
|
||||
import com.ruoyi.system.domain.vo.BuildingInfoRequest;
|
||||
import com.ruoyi.system.domain.vo.BuildingInfoResponse;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 球场管理Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-08-30
|
||||
*/
|
||||
public interface IWxBuildingInfoService
|
||||
public interface IWxBuildingInfoService extends IService<WxBuildingInfo>
|
||||
{
|
||||
/**
|
||||
* 查询球场管理
|
||||
|
|
|
|||
|
|
@ -1,15 +1,17 @@
|
|||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.core.service.IService;
|
||||
import com.ruoyi.system.domain.WxUser;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 微信用户Service接口
|
||||
*
|
||||
* @author 吴一博
|
||||
* @date 2022-08-30
|
||||
*/
|
||||
public interface IWxUserService
|
||||
public interface IWxUserService extends IService<WxUser>
|
||||
{
|
||||
/**
|
||||
* 查询微信用户
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.domain.BuildingInfoDetail;
|
||||
import com.ruoyi.system.mapper.BuildingInfoDetailMapper;
|
||||
import com.ruoyi.system.service.IBuildingInfoDetailService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.BuildingInfoDetailMapper;
|
||||
import com.ruoyi.system.domain.BuildingInfoDetail;
|
||||
import com.ruoyi.system.service.IBuildingInfoDetailService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service业务层处理
|
||||
|
|
@ -14,7 +16,7 @@ import com.ruoyi.system.service.IBuildingInfoDetailService;
|
|||
* @date 2023-07-06
|
||||
*/
|
||||
@Service
|
||||
public class BuildingInfoDetailServiceImpl implements IBuildingInfoDetailService
|
||||
public class BuildingInfoDetailServiceImpl extends ServiceImpl<BuildingInfoDetailMapper, BuildingInfoDetail> implements IBuildingInfoDetailService
|
||||
{
|
||||
@Autowired
|
||||
private BuildingInfoDetailMapper buildingInfoDetailMapper;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.domain.BuildingLabel;
|
||||
import com.ruoyi.system.mapper.BuildingLabelMapper;
|
||||
import com.ruoyi.system.service.IBuildingLabelService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.BuildingLabelMapper;
|
||||
import com.ruoyi.system.domain.BuildingLabel;
|
||||
import com.ruoyi.system.service.IBuildingLabelService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service业务层处理
|
||||
|
|
@ -14,7 +16,7 @@ import com.ruoyi.system.service.IBuildingLabelService;
|
|||
* @date 2023-07-04
|
||||
*/
|
||||
@Service
|
||||
public class BuildingLabelServiceImpl implements IBuildingLabelService
|
||||
public class BuildingLabelServiceImpl extends ServiceImpl<BuildingLabelMapper, BuildingLabel> implements IBuildingLabelService
|
||||
{
|
||||
@Autowired
|
||||
private BuildingLabelMapper buildingLabelMapper;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.domain.BuildingTeamRel;
|
||||
import com.ruoyi.system.mapper.BuildingTeamRelMapper;
|
||||
import com.ruoyi.system.service.IBuildingTeamRelService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.BuildingTeamRelMapper;
|
||||
import com.ruoyi.system.domain.BuildingTeamRel;
|
||||
import com.ruoyi.system.service.IBuildingTeamRelService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service业务层处理
|
||||
|
|
@ -14,7 +16,7 @@ import com.ruoyi.system.service.IBuildingTeamRelService;
|
|||
* @date 2023-07-04
|
||||
*/
|
||||
@Service
|
||||
public class BuildingTeamRelServiceImpl implements IBuildingTeamRelService
|
||||
public class BuildingTeamRelServiceImpl extends ServiceImpl<BuildingTeamRelMapper, BuildingTeamRel> implements IBuildingTeamRelService
|
||||
{
|
||||
@Autowired
|
||||
private BuildingTeamRelMapper buildingTeamRelMapper;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.domain.CameraInfo;
|
||||
import com.ruoyi.system.mapper.CameraInfoMapper;
|
||||
import com.ruoyi.system.service.ICameraInfoService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.CameraInfoMapper;
|
||||
import com.ruoyi.system.domain.CameraInfo;
|
||||
import com.ruoyi.system.service.ICameraInfoService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service业务层处理
|
||||
|
|
@ -14,7 +16,7 @@ import com.ruoyi.system.service.ICameraInfoService;
|
|||
* @date 2023-07-04
|
||||
*/
|
||||
@Service
|
||||
public class CameraInfoServiceImpl implements ICameraInfoService
|
||||
public class CameraInfoServiceImpl extends ServiceImpl<CameraInfoMapper, CameraInfo> implements ICameraInfoService
|
||||
{
|
||||
@Autowired
|
||||
private CameraInfoMapper cameraInfoMapper;
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.domain.CompetitionMembersScore;
|
||||
import com.ruoyi.system.domain.vo.CompetitionMembersScoreVo;
|
||||
import com.ruoyi.system.domain.vo.PersonalCareerVo;
|
||||
import com.ruoyi.system.mapper.CompetitionMembersScoreMapper;
|
||||
import com.ruoyi.system.service.ICompetitionMembersScoreService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.CompetitionMembersScoreMapper;
|
||||
import com.ruoyi.system.domain.CompetitionMembersScore;
|
||||
import com.ruoyi.system.service.ICompetitionMembersScoreService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 赛会中-赛程-人员得分Service业务层处理
|
||||
|
|
@ -17,7 +17,7 @@ import com.ruoyi.system.service.ICompetitionMembersScoreService;
|
|||
* @date 2022-11-03
|
||||
*/
|
||||
@Service
|
||||
public class CompetitionMembersScoreServiceImpl implements ICompetitionMembersScoreService
|
||||
public class CompetitionMembersScoreServiceImpl extends ServiceImpl<CompetitionMembersScoreMapper, CompetitionMembersScore> implements ICompetitionMembersScoreService
|
||||
{
|
||||
@Autowired
|
||||
private CompetitionMembersScoreMapper competitionMembersScoreMapper;
|
||||
|
|
|
|||
|
|
@ -1,22 +1,22 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import cn.hutool.core.bean.BeanUtil;
|
||||
import cn.hutool.core.util.ObjectUtil;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.domain.Competition;
|
||||
import com.ruoyi.system.domain.CompetitionMembers;
|
||||
import com.ruoyi.system.domain.CompetitionOfTeam;
|
||||
import com.ruoyi.system.domain.vo.CompetitionMembersScoreVo;
|
||||
import com.ruoyi.system.domain.vo.CompetitionMembersVo;
|
||||
import com.ruoyi.system.domain.vo.PersonalCareerVo;
|
||||
import com.ruoyi.system.mapper.CompetitionMapper;
|
||||
import com.ruoyi.system.mapper.CompetitionMembersMapper;
|
||||
import com.ruoyi.system.mapper.CompetitionOfTeamMapper;
|
||||
import com.ruoyi.system.service.ICompetitionMembersScoreService;
|
||||
import com.ruoyi.system.service.ICompetitionMembersService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.CompetitionMembersMapper;
|
||||
import com.ruoyi.system.domain.CompetitionMembers;
|
||||
import com.ruoyi.system.service.ICompetitionMembersService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 比赛参与人员Service业务层处理
|
||||
|
|
@ -25,7 +25,7 @@ import com.ruoyi.system.service.ICompetitionMembersService;
|
|||
* @date 2022-11-03
|
||||
*/
|
||||
@Service
|
||||
public class CompetitionMembersServiceImpl implements ICompetitionMembersService
|
||||
public class CompetitionMembersServiceImpl extends ServiceImpl<CompetitionMembersMapper, CompetitionMembers> implements ICompetitionMembersService
|
||||
{
|
||||
@Autowired
|
||||
private CompetitionMembersMapper competitionMembersMapper;
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.common.security.utils.SecurityUtils;
|
||||
import com.ruoyi.system.api.model.LoginUser;
|
||||
import com.ruoyi.system.domain.CompetitionOfTeam;
|
||||
import com.ruoyi.system.domain.vo.CompetitionOfTeamVo;
|
||||
import com.ruoyi.system.mapper.CompetitionOfTeamMapper;
|
||||
import com.ruoyi.system.service.ICompetitionOfTeamService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import com.ruoyi.common.security.utils.SecurityUtils;
|
||||
import com.ruoyi.system.api.model.LoginUser;
|
||||
import com.ruoyi.system.domain.vo.CompetitionOfTeamVo;
|
||||
import com.ruoyi.system.utils.LoginUserUtil;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.CompetitionOfTeamMapper;
|
||||
import com.ruoyi.system.domain.CompetitionOfTeam;
|
||||
import com.ruoyi.system.service.ICompetitionOfTeamService;
|
||||
|
||||
/**
|
||||
* 赛会中-参赛队伍Service业务层处理
|
||||
*
|
||||
|
|
@ -20,7 +20,7 @@ import com.ruoyi.system.service.ICompetitionOfTeamService;
|
|||
* @date 2022-11-03
|
||||
*/
|
||||
@Service
|
||||
public class CompetitionOfTeamServiceImpl implements ICompetitionOfTeamService
|
||||
public class CompetitionOfTeamServiceImpl extends ServiceImpl<CompetitionOfTeamMapper, CompetitionOfTeam> implements ICompetitionOfTeamService
|
||||
{
|
||||
@Autowired
|
||||
private CompetitionOfTeamMapper competitionOfTeamMapper;
|
||||
|
|
|
|||
|
|
@ -1,26 +1,22 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import com.ruoyi.common.security.utils.SecurityUtils;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.api.model.LoginUser;
|
||||
import com.ruoyi.system.api.model.WxLoginUser;
|
||||
import com.ruoyi.system.domain.CompetitionResult;
|
||||
import com.ruoyi.system.domain.CompetitionTeamVsTeam;
|
||||
import com.ruoyi.system.domain.enums.VsResultEnums;
|
||||
import com.ruoyi.system.domain.vo.CompetitionResultVo;
|
||||
import com.ruoyi.system.domain.vo.CompetitionVsRecordVo;
|
||||
import com.ruoyi.system.mapper.CompetitionTeamVsTeamMapper;
|
||||
import com.ruoyi.system.utils.LoginUserUtil;
|
||||
import com.ruoyi.system.utils.UtilTool;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.CompetitionResultMapper;
|
||||
import com.ruoyi.system.domain.CompetitionResult;
|
||||
import com.ruoyi.system.mapper.CompetitionTeamVsTeamMapper;
|
||||
import com.ruoyi.system.service.ICompetitionResultService;
|
||||
import com.ruoyi.system.utils.UtilTool;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 赛会中-赛程结果记录Service业务层处理
|
||||
|
|
@ -29,7 +25,7 @@ import javax.annotation.Resource;
|
|||
* @date 2022-11-03
|
||||
*/
|
||||
@Service
|
||||
public class CompetitionResultServiceImpl implements ICompetitionResultService
|
||||
public class CompetitionResultServiceImpl extends ServiceImpl<CompetitionResultMapper, CompetitionResult> implements ICompetitionResultService
|
||||
{
|
||||
@Resource
|
||||
private CompetitionResultMapper competitionResultMapper;
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ import cn.hutool.core.util.NumberUtil;
|
|||
import cn.hutool.core.util.ObjectUtil;
|
||||
import cn.hutool.crypto.digest.DigestUtil;
|
||||
import com.alibaba.fastjson.JSON;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.common.core.constant.CacheConstants;
|
||||
import com.ruoyi.common.core.constant.Constants;
|
||||
import com.ruoyi.common.core.exception.CheckedException;
|
||||
|
|
@ -49,7 +50,7 @@ import javax.annotation.Resource;
|
|||
*/
|
||||
@Log4j2
|
||||
@Service
|
||||
public class CompetitionServiceImpl implements ICompetitionService
|
||||
public class CompetitionServiceImpl extends ServiceImpl<CompetitionMapper, Competition> implements ICompetitionService
|
||||
{
|
||||
@Resource
|
||||
private CompetitionMapper competitionMapper;
|
||||
|
|
|
|||
|
|
@ -1,18 +1,17 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
import cn.hutool.core.util.ObjectUtil;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.common.core.exception.CheckedException;
|
||||
import com.ruoyi.system.domain.vo.CompetitionSharePermissionsVo;
|
||||
import com.ruoyi.system.domain.CompetitionSharePermissions;
|
||||
import com.ruoyi.system.mapper.CompetitionSharePermissionsMapper;
|
||||
import com.ruoyi.system.service.ICompetitionSharePermissionsService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.CompetitionSharePermissionsMapper;
|
||||
import com.ruoyi.system.domain.CompetitionSharePermissions;
|
||||
import com.ruoyi.system.service.ICompetitionSharePermissionsService;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 赛会-权限分享Service业务层处理
|
||||
*
|
||||
|
|
@ -20,7 +19,7 @@ import org.springframework.transaction.annotation.Transactional;
|
|||
* @date 2023-07-20
|
||||
*/
|
||||
@Service
|
||||
public class CompetitionSharePermissionsServiceImpl implements ICompetitionSharePermissionsService
|
||||
public class CompetitionSharePermissionsServiceImpl extends ServiceImpl<CompetitionSharePermissionsMapper, CompetitionSharePermissions> implements ICompetitionSharePermissionsService
|
||||
{
|
||||
@Autowired
|
||||
private CompetitionSharePermissionsMapper competitionSharePermissionsMapper;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,6 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.*;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.common.core.constant.CacheConstants;
|
||||
import com.ruoyi.common.core.exception.ServiceException;
|
||||
import com.ruoyi.common.redis.service.RedisService;
|
||||
|
|
@ -10,25 +8,24 @@ import com.ruoyi.common.security.utils.SecurityUtils;
|
|||
import com.ruoyi.system.api.model.LoginUser;
|
||||
import com.ruoyi.system.domain.Competition;
|
||||
import com.ruoyi.system.domain.CompetitionOfTeam;
|
||||
import com.ruoyi.system.domain.CompetitionTeamGroup;
|
||||
import com.ruoyi.system.domain.CompetitionTeamVsTeam;
|
||||
import com.ruoyi.system.domain.vo.BegerArrangementVo;
|
||||
import com.ruoyi.system.domain.vo.CompetitionOfTeamVo;
|
||||
import com.ruoyi.system.domain.vo.CompetitionTeamVsTeamVo;
|
||||
import com.ruoyi.system.domain.vo.TeamGroupRequest;
|
||||
import com.ruoyi.system.mapper.CompetitionMapper;
|
||||
import com.ruoyi.system.mapper.CompetitionOfTeamMapper;
|
||||
import com.ruoyi.system.mapper.CompetitionTeamVsTeamMapper;
|
||||
import com.ruoyi.system.utils.BegerSingleCycleUtil;
|
||||
import com.ruoyi.system.utils.LoginUserUtil;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.CompetitionTeamGroupMapper;
|
||||
import com.ruoyi.system.domain.CompetitionTeamGroup;
|
||||
import com.ruoyi.system.mapper.CompetitionTeamVsTeamMapper;
|
||||
import com.ruoyi.system.service.ICompetitionTeamGroupService;
|
||||
import com.ruoyi.system.utils.BegerSingleCycleUtil;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
import org.springframework.util.StringUtils;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.*;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
/**
|
||||
* 赛会中-分组Service业务层处理
|
||||
|
|
@ -37,7 +34,7 @@ import javax.annotation.Resource;
|
|||
* @date 2022-11-03
|
||||
*/
|
||||
@Service
|
||||
public class CompetitionTeamGroupServiceImpl implements ICompetitionTeamGroupService
|
||||
public class CompetitionTeamGroupServiceImpl extends ServiceImpl<CompetitionTeamGroupMapper, CompetitionTeamGroup> implements ICompetitionTeamGroupService
|
||||
{
|
||||
@Resource
|
||||
private CompetitionTeamGroupMapper competitionTeamGroupMapper;
|
||||
|
|
|
|||
|
|
@ -1,32 +1,31 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.security.InvalidParameterException;
|
||||
import java.util.*;
|
||||
import java.util.stream.Collectors;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
import cn.hutool.core.util.ObjectUtil;
|
||||
import com.mybatisflex.core.query.QueryWrapper;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.common.core.exception.ServiceException;
|
||||
import com.ruoyi.common.security.utils.SecurityUtils;
|
||||
import com.ruoyi.system.api.model.LoginUser;
|
||||
import com.ruoyi.system.api.model.WxLoginUser;
|
||||
import com.ruoyi.system.domain.CompetitionMembersScore;
|
||||
import com.ruoyi.system.domain.CompetitionResult;
|
||||
import com.ruoyi.system.domain.CompetitionTeamVsTeam;
|
||||
import com.ruoyi.system.domain.vo.*;
|
||||
import com.ruoyi.system.mapper.CompetitionMembersScoreMapper;
|
||||
import com.ruoyi.system.mapper.CompetitionResultMapper;
|
||||
import com.ruoyi.system.service.ICompetitionResultService;
|
||||
import com.ruoyi.system.utils.LoginUserUtil;
|
||||
import com.ruoyi.system.mapper.CompetitionTeamVsTeamMapper;
|
||||
import com.ruoyi.system.service.ICompetitionTeamVsTeamService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.CompetitionTeamVsTeamMapper;
|
||||
import com.ruoyi.system.domain.CompetitionTeamVsTeam;
|
||||
import com.ruoyi.system.service.ICompetitionTeamVsTeamService;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
import org.springframework.util.CollectionUtils;
|
||||
import org.springframework.util.StringUtils;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.security.InvalidParameterException;
|
||||
import java.util.*;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import static com.ruoyi.system.domain.table.CompetitionMembersScoreTableDef.COMPETITION_MEMBERS_SCORE;
|
||||
import static com.ruoyi.system.domain.table.CompetitionResultTableDef.COMPETITION_RESULT;
|
||||
|
||||
/**
|
||||
* 赛会中-球队VS球队关系Service业务层处理
|
||||
|
|
@ -35,13 +34,13 @@ import javax.annotation.Resource;
|
|||
* @date 2022-11-03
|
||||
*/
|
||||
@Service
|
||||
public class CompetitionTeamVsTeamServiceImpl implements ICompetitionTeamVsTeamService
|
||||
public class CompetitionTeamVsTeamServiceImpl extends ServiceImpl<CompetitionTeamVsTeamMapper, CompetitionTeamVsTeam> implements ICompetitionTeamVsTeamService
|
||||
{
|
||||
@Autowired
|
||||
private CompetitionTeamVsTeamMapper competitionTeamVsTeamMapper;
|
||||
|
||||
@Resource
|
||||
private ICompetitionResultService competitionResultService;
|
||||
private CompetitionResultMapper competitionResultMapper;
|
||||
@Resource
|
||||
private CompetitionMembersScoreMapper competitionMembersScoreMapper;
|
||||
|
||||
|
|
@ -100,8 +99,16 @@ public class CompetitionTeamVsTeamServiceImpl implements ICompetitionTeamVsTeamS
|
|||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@Transactional
|
||||
public int deleteCompetitionTeamVsTeamByIds(Long[] ids)
|
||||
{
|
||||
//删除赛程的时候同时删除比赛结果
|
||||
QueryWrapper queryWrapper = QueryWrapper.create();
|
||||
queryWrapper.where(COMPETITION_RESULT.COMPETITION_VS_ID.in(ids));
|
||||
competitionResultMapper.deleteByQuery(queryWrapper);
|
||||
QueryWrapper queryWrapper1 = QueryWrapper.create();
|
||||
queryWrapper1.where(COMPETITION_MEMBERS_SCORE.COMPETITION_VS_ID.in(ids));
|
||||
competitionMembersScoreMapper.deleteByQuery(queryWrapper1);
|
||||
return competitionTeamVsTeamMapper.deleteCompetitionTeamVsTeamByIds(ids);
|
||||
}
|
||||
|
||||
|
|
@ -127,7 +134,7 @@ public class CompetitionTeamVsTeamServiceImpl implements ICompetitionTeamVsTeamS
|
|||
unifiedRecordVo.setTeamVsTeamVo(competitionTeamVsTeamVo);
|
||||
|
||||
//查询队伍数据
|
||||
List<CompetitionResultVo> competitionResultList = competitionResultService.findByCompetitionVsId(competitionTeamVsTeamVo.getCompetitionId(),competitionTeamVsTeamVo.getId());
|
||||
List<CompetitionResultVo> competitionResultList = competitionResultMapper.findByCompetitionVsId(competitionTeamVsTeamVo.getCompetitionId(),competitionTeamVsTeamVo.getId());
|
||||
unifiedRecordVo.setCompetitionResultList(competitionResultList);
|
||||
|
||||
//查询赛程中个人成绩
|
||||
|
|
@ -173,7 +180,7 @@ public class CompetitionTeamVsTeamServiceImpl implements ICompetitionTeamVsTeamS
|
|||
throw new ServiceException("赛程不存在");
|
||||
}
|
||||
//获取主队每节数据
|
||||
List<CompetitionResultVo> competitionResultList = competitionResultService.findByCompetitionVsId(competitionTeamVsTeamVo.getCompetitionId(),competitionTeamVsTeamVo.getId());
|
||||
List<CompetitionResultVo> competitionResultList = competitionResultMapper.findByCompetitionVsId(competitionTeamVsTeamVo.getCompetitionId(),competitionTeamVsTeamVo.getId());
|
||||
Optional<CompetitionResultVo> main = competitionResultList.stream().filter(a -> a.getCompetitionOfTeamId().equals(competitionTeamVsTeamVo.getMainTeamId())).findFirst();
|
||||
Optional<CompetitionResultVo> guest = competitionResultList.stream().filter(a -> a.getCompetitionOfTeamId().equals(competitionTeamVsTeamVo.getGuestTeamId())).findFirst();
|
||||
List<CompetitionMembersScoreVo> membersScoreList = competitionMembersScoreMapper.findMembersScoreByCompetitionVsId(competitionTeamVsTeamVo.getCompetitionId(),competitionTeamVsTeamVo.getId());
|
||||
|
|
@ -259,6 +266,7 @@ public class CompetitionTeamVsTeamServiceImpl implements ICompetitionTeamVsTeamS
|
|||
return Boolean.TRUE;
|
||||
}
|
||||
|
||||
@Transactional
|
||||
@Override
|
||||
public Boolean competitionScoreSubmit(List<CompetitionResult> request) {
|
||||
CompetitionTeamVsTeamVo teamVsTeam = new CompetitionTeamVsTeamVo();
|
||||
|
|
@ -293,12 +301,12 @@ public class CompetitionTeamVsTeamServiceImpl implements ICompetitionTeamVsTeamS
|
|||
}
|
||||
//新增
|
||||
if(competitionResult.getId()==null){
|
||||
competitionResultService.add(competitionResult);
|
||||
competitionResultMapper.insertCompetitionResult(competitionResult);
|
||||
} else {//编辑
|
||||
if(StringUtils.isEmpty(competitionResult.getId())){
|
||||
throw new InvalidParameterException("id为空");
|
||||
}
|
||||
competitionResultService.edit(competitionResult);
|
||||
competitionResultMapper.updateCompetitionResult(competitionResult);
|
||||
}
|
||||
}
|
||||
//todo 更新赛程数据的比分
|
||||
|
|
@ -325,6 +333,6 @@ public class CompetitionTeamVsTeamServiceImpl implements ICompetitionTeamVsTeamS
|
|||
|
||||
@Override
|
||||
public List<CompetitionTeamVsTeamVo> getTodaySchedule(CompetitionTeamVsTeam competitionTeamVsTeam) {
|
||||
return competitionTeamVsTeamMapper.getTodaySchedule(competitionResultService);
|
||||
return competitionTeamVsTeamMapper.getTodaySchedule(competitionTeamVsTeam);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.domain.FeatureLabel;
|
||||
import com.ruoyi.system.mapper.FeatureLabelMapper;
|
||||
import com.ruoyi.system.service.IFeatureLabelService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.FeatureLabelMapper;
|
||||
import com.ruoyi.system.domain.FeatureLabel;
|
||||
import com.ruoyi.system.service.IFeatureLabelService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 球馆特征Service业务层处理
|
||||
|
|
@ -14,7 +16,7 @@ import com.ruoyi.system.service.IFeatureLabelService;
|
|||
* @date 2023-07-06
|
||||
*/
|
||||
@Service
|
||||
public class FeatureLabelServiceImpl implements IFeatureLabelService
|
||||
public class FeatureLabelServiceImpl extends ServiceImpl<FeatureLabelMapper, FeatureLabel> implements IFeatureLabelService
|
||||
{
|
||||
@Autowired
|
||||
private FeatureLabelMapper featureLabelMapper;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.domain.GlobalAttachment;
|
||||
import com.ruoyi.system.mapper.GlobalAttachmentMapper;
|
||||
import com.ruoyi.system.service.IGlobalAttachmentService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.GlobalAttachmentMapper;
|
||||
import com.ruoyi.system.domain.GlobalAttachment;
|
||||
import com.ruoyi.system.service.IGlobalAttachmentService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service业务层处理
|
||||
|
|
@ -14,7 +16,7 @@ import com.ruoyi.system.service.IGlobalAttachmentService;
|
|||
* @date 2023-07-04
|
||||
*/
|
||||
@Service
|
||||
public class GlobalAttachmentServiceImpl implements IGlobalAttachmentService
|
||||
public class GlobalAttachmentServiceImpl extends ServiceImpl<GlobalAttachmentMapper, GlobalAttachment> implements IGlobalAttachmentService
|
||||
{
|
||||
@Autowired
|
||||
private GlobalAttachmentMapper globalAttachmentMapper;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.domain.GroupWechat;
|
||||
import com.ruoyi.system.mapper.GroupWechatMapper;
|
||||
import com.ruoyi.system.service.IGroupWechatService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.GroupWechatMapper;
|
||||
import com.ruoyi.system.domain.GroupWechat;
|
||||
import com.ruoyi.system.service.IGroupWechatService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service业务层处理
|
||||
|
|
@ -14,7 +16,7 @@ import com.ruoyi.system.service.IGroupWechatService;
|
|||
* @date 2023-07-04
|
||||
*/
|
||||
@Service
|
||||
public class GroupWechatServiceImpl implements IGroupWechatService
|
||||
public class GroupWechatServiceImpl extends ServiceImpl<GroupWechatMapper, GroupWechat> implements IGroupWechatService
|
||||
{
|
||||
@Autowired
|
||||
private GroupWechatMapper groupWechatMapper;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.domain.Message;
|
||||
import com.ruoyi.system.mapper.MessageMapper;
|
||||
import com.ruoyi.system.service.IMessageService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.MessageMapper;
|
||||
import com.ruoyi.system.domain.Message;
|
||||
import com.ruoyi.system.service.IMessageService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service业务层处理
|
||||
|
|
@ -14,7 +16,7 @@ import com.ruoyi.system.service.IMessageService;
|
|||
* @date 2023-07-04
|
||||
*/
|
||||
@Service
|
||||
public class MessageServiceImpl implements IMessageService
|
||||
public class MessageServiceImpl extends ServiceImpl<MessageMapper, Message> implements IMessageService
|
||||
{
|
||||
@Autowired
|
||||
private MessageMapper messageMapper;
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import cn.hutool.core.util.ObjectUtil;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.common.security.utils.SecurityUtils;
|
||||
import com.ruoyi.system.api.model.LoginUser;
|
||||
import com.ruoyi.system.domain.TeamMembers;
|
||||
import com.ruoyi.system.domain.vo.TeamMembersResponse;
|
||||
import com.ruoyi.system.domain.vo.TeamMembersVo;
|
||||
import com.ruoyi.system.utils.LoginUserUtil;
|
||||
import com.ruoyi.system.mapper.TeamMembersMapper;
|
||||
import com.ruoyi.system.service.ITeamMembersService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.TeamMembersMapper;
|
||||
import com.ruoyi.system.domain.TeamMembers;
|
||||
import com.ruoyi.system.service.ITeamMembersService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 球队人员Service业务层处理
|
||||
|
|
@ -21,7 +21,7 @@ import com.ruoyi.system.service.ITeamMembersService;
|
|||
* @date 2022-11-03
|
||||
*/
|
||||
@Service
|
||||
public class TeamMembersServiceImpl implements ITeamMembersService
|
||||
public class TeamMembersServiceImpl extends ServiceImpl<TeamMembersMapper, TeamMembers> implements ITeamMembersService
|
||||
{
|
||||
@Autowired
|
||||
private TeamMembersMapper teamMembersMapper;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.domain.TrainingInfo;
|
||||
import com.ruoyi.system.mapper.TrainingInfoMapper;
|
||||
import com.ruoyi.system.service.ITrainingInfoService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.TrainingInfoMapper;
|
||||
import com.ruoyi.system.domain.TrainingInfo;
|
||||
import com.ruoyi.system.service.ITrainingInfoService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service业务层处理
|
||||
|
|
@ -14,7 +16,7 @@ import com.ruoyi.system.service.ITrainingInfoService;
|
|||
* @date 2023-07-04
|
||||
*/
|
||||
@Service
|
||||
public class TrainingInfoServiceImpl implements ITrainingInfoService
|
||||
public class TrainingInfoServiceImpl extends ServiceImpl<TrainingInfoMapper, TrainingInfo> implements ITrainingInfoService
|
||||
{
|
||||
@Autowired
|
||||
private TrainingInfoMapper trainingInfoMapper;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.domain.UserBuildingRel;
|
||||
import com.ruoyi.system.mapper.UserBuildingRelMapper;
|
||||
import com.ruoyi.system.service.IUserBuildingRelService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.UserBuildingRelMapper;
|
||||
import com.ruoyi.system.domain.UserBuildingRel;
|
||||
import com.ruoyi.system.service.IUserBuildingRelService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service业务层处理
|
||||
|
|
@ -14,7 +16,7 @@ import com.ruoyi.system.service.IUserBuildingRelService;
|
|||
* @date 2023-07-04
|
||||
*/
|
||||
@Service
|
||||
public class UserBuildingRelServiceImpl implements IUserBuildingRelService
|
||||
public class UserBuildingRelServiceImpl extends ServiceImpl<UserBuildingRelMapper, UserBuildingRel> implements IUserBuildingRelService
|
||||
{
|
||||
@Autowired
|
||||
private UserBuildingRelMapper userBuildingRelMapper;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.domain.UserRole;
|
||||
import com.ruoyi.system.mapper.UserRoleMapper;
|
||||
import com.ruoyi.system.service.IUserRoleService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.UserRoleMapper;
|
||||
import com.ruoyi.system.domain.UserRole;
|
||||
import com.ruoyi.system.service.IUserRoleService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service业务层处理
|
||||
|
|
@ -14,7 +16,7 @@ import com.ruoyi.system.service.IUserRoleService;
|
|||
* @date 2023-07-04
|
||||
*/
|
||||
@Service
|
||||
public class UserRoleServiceImpl implements IUserRoleService
|
||||
public class UserRoleServiceImpl extends ServiceImpl<UserRoleMapper, UserRole> implements IUserRoleService
|
||||
{
|
||||
@Autowired
|
||||
private UserRoleMapper userRoleMapper;
|
||||
|
|
|
|||
|
|
@ -1,22 +1,21 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.common.core.utils.StringUtils;
|
||||
import com.ruoyi.common.security.utils.SecurityUtils;
|
||||
import com.ruoyi.system.api.domain.vo.WxAppletsCodeVo;
|
||||
import com.ruoyi.system.api.feign.WxAppletsFeign;
|
||||
import com.ruoyi.system.domain.UserWxAqrCode;
|
||||
import com.ruoyi.system.domain.vo.UserWxAqrCodeVo;
|
||||
import com.ruoyi.system.mapper.UserWxAqrCodeMapper;
|
||||
import com.ruoyi.system.service.IUserWxAqrCodeService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.UserWxAqrCodeMapper;
|
||||
import com.ruoyi.system.domain.UserWxAqrCode;
|
||||
import com.ruoyi.system.service.IUserWxAqrCodeService;
|
||||
import org.springframework.util.ObjectUtils;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 微信用户小程序二维码Service业务层处理
|
||||
|
|
@ -25,7 +24,7 @@ import javax.annotation.Resource;
|
|||
* @date 2022-10-18
|
||||
*/
|
||||
@Service
|
||||
public class UserWxAqrCodeServiceImpl implements IUserWxAqrCodeService
|
||||
public class UserWxAqrCodeServiceImpl extends ServiceImpl<UserWxAqrCodeMapper, UserWxAqrCode> implements IUserWxAqrCodeService
|
||||
{
|
||||
@Autowired
|
||||
private UserWxAqrCodeMapper userWxAqrCodeMapper;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.domain.WxBasketballTeam;
|
||||
import com.ruoyi.system.mapper.WxBasketballTeamMapper;
|
||||
import com.ruoyi.system.service.IWxBasketballTeamService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.WxBasketballTeamMapper;
|
||||
import com.ruoyi.system.domain.WxBasketballTeam;
|
||||
import com.ruoyi.system.service.IWxBasketballTeamService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 球队管理Service业务层处理
|
||||
|
|
@ -14,7 +16,7 @@ import com.ruoyi.system.service.IWxBasketballTeamService;
|
|||
* @date 2022-08-30
|
||||
*/
|
||||
@Service
|
||||
public class WxBasketballTeamServiceImpl implements IWxBasketballTeamService
|
||||
public class WxBasketballTeamServiceImpl extends ServiceImpl<WxBasketballTeamMapper, WxBasketballTeam> implements IWxBasketballTeamService
|
||||
{
|
||||
@Autowired
|
||||
private WxBasketballTeamMapper wxBasketballTeamMapper;
|
||||
|
|
|
|||
|
|
@ -1,25 +1,25 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.common.security.utils.SecurityUtils;
|
||||
import com.ruoyi.system.api.model.LoginUser;
|
||||
import com.ruoyi.system.domain.BuildingInfoDetail;
|
||||
import com.ruoyi.system.domain.BuildingLabel;
|
||||
import com.ruoyi.system.domain.FeatureLabel;
|
||||
import com.ruoyi.system.domain.WxBuildingInfo;
|
||||
import com.ruoyi.system.domain.vo.BuildingInfoRequest;
|
||||
import com.ruoyi.system.domain.vo.BuildingInfoResponse;
|
||||
import com.ruoyi.system.mapper.*;
|
||||
import com.ruoyi.system.service.IWxBuildingInfoService;
|
||||
import org.springframework.beans.BeanUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.util.ObjectUtils;
|
||||
import org.springframework.util.StringUtils;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import com.alibaba.fastjson.JSON;
|
||||
import com.ruoyi.common.security.utils.SecurityUtils;
|
||||
import com.ruoyi.system.api.model.LoginUser;
|
||||
import com.ruoyi.system.api.model.WxLoginUser;
|
||||
import com.ruoyi.system.domain.*;
|
||||
import com.ruoyi.system.domain.vo.BuildingInfoRequest;
|
||||
import com.ruoyi.system.domain.vo.BuildingInfoResponse;
|
||||
import com.ruoyi.system.mapper.*;
|
||||
import com.ruoyi.system.utils.LoginUserUtil;
|
||||
import org.springframework.beans.BeanUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.service.IWxBuildingInfoService;
|
||||
import org.springframework.util.ObjectUtils;
|
||||
import org.springframework.util.StringUtils;
|
||||
|
||||
/**
|
||||
* 球场管理Service业务层处理
|
||||
|
|
@ -28,7 +28,7 @@ import org.springframework.util.StringUtils;
|
|||
* @date 2022-08-30
|
||||
*/
|
||||
@Service
|
||||
public class WxBuildingInfoServiceImpl implements IWxBuildingInfoService
|
||||
public class WxBuildingInfoServiceImpl extends ServiceImpl<WxBuildingInfoMapper, WxBuildingInfo> implements IWxBuildingInfoService
|
||||
{
|
||||
@Autowired
|
||||
private WxBuildingInfoMapper wxBuildingInfoMapper;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.mybatisflex.spring.service.impl.ServiceImpl;
|
||||
import com.ruoyi.system.domain.WxUser;
|
||||
import com.ruoyi.system.mapper.WxUserMapper;
|
||||
import com.ruoyi.system.service.IWxUserService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.WxUserMapper;
|
||||
import com.ruoyi.system.domain.WxUser;
|
||||
import com.ruoyi.system.service.IWxUserService;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 微信用户Service业务层处理
|
||||
|
|
@ -14,7 +16,7 @@ import com.ruoyi.system.service.IWxUserService;
|
|||
* @date 2022-08-30
|
||||
*/
|
||||
@Service
|
||||
public class WxUserServiceImpl implements IWxUserService
|
||||
public class WxUserServiceImpl extends ServiceImpl<WxUserMapper, WxUser> implements IWxUserService
|
||||
{
|
||||
@Autowired
|
||||
private WxUserMapper wxUserMapper;
|
||||
|
|
|
|||
Loading…
Reference in New Issue