From ff809b56ee7462c0a156c3c072f28a270ade4abc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9D=8E=E7=8E=89=E4=B8=9C?=
<129883742+liyudong2018@users.noreply.github.com>
Date: Sat, 20 Sep 2025 22:01:08 +0800
Subject: [PATCH 1/3] =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E7=9B=B8=E5=85=B3?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../com/hivekion/team/entity/Teaminfo.java | 63 ++-----------------
.../resources/mapper/tbl/TeaminfoMapper.xml | 1 +
2 files changed, 5 insertions(+), 59 deletions(-)
diff --git a/src/main/java/com/hivekion/team/entity/Teaminfo.java b/src/main/java/com/hivekion/team/entity/Teaminfo.java
index cb7a2a3..bf3673e 100644
--- a/src/main/java/com/hivekion/team/entity/Teaminfo.java
+++ b/src/main/java/com/hivekion/team/entity/Teaminfo.java
@@ -8,6 +8,7 @@ import com.hivekion.common.entity.SearchInputVo;
import java.io.Serializable;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
/**
*
@@ -19,6 +20,7 @@ import io.swagger.annotations.ApiModelProperty;
*/
@TableName("TBL_TEAMINFO")
@ApiModel(value = "Teaminfo对象", description = "")
+@Data
public class Teaminfo extends SearchInputVo {
private static final long serialVersionUID = 1L;
@@ -40,64 +42,7 @@ public class Teaminfo extends SearchInputVo {
@ApiModelProperty("图标ID")
@TableField(value="icon_id")
private String iconId;
+ @TableField(value="team_type")
+ private Integer teamType;
- public Integer getId() {
- return id;
- }
-
- public void setId(Integer id) {
- this.id = id;
- }
-
- public String getGuid() {
- return guid;
- }
-
- public void setGuid(String guid) {
- this.guid = guid;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- public Integer getType() {
- return type;
- }
-
- public void setType(Integer type) {
- this.type = type;
- }
-
- public String getMappingguid() {
- return mappingguid;
- }
-
- public void setMappingguid(String mappingguid) {
- this.mappingguid = mappingguid;
- }
-
- public String getIconId() {
- return iconId;
- }
-
- public void setIconId(String iconId) {
- this.iconId = iconId;
- }
-
- @Override
- public String toString() {
- return "Teaminfo{" +
- "id = " + id +
- ", guid = " + guid +
- ", name = " + name +
- ", type = " + type +
- ", mappingguid = " + mappingguid +
- ", iconId = " + iconId +
- "}";
- }
}
diff --git a/src/main/resources/mapper/tbl/TeaminfoMapper.xml b/src/main/resources/mapper/tbl/TeaminfoMapper.xml
index 7a08db8..9b4c178 100644
--- a/src/main/resources/mapper/tbl/TeaminfoMapper.xml
+++ b/src/main/resources/mapper/tbl/TeaminfoMapper.xml
@@ -8,6 +8,7 @@
+