任务相关

This commit is contained in:
李玉东 2025-09-20 22:01:08 +08:00
parent 25507ce2aa
commit ff809b56ee
2 changed files with 5 additions and 59 deletions

View File

@ -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;
/**
* <p>
@ -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 +
"}";
}
}

View File

@ -8,6 +8,7 @@
<result property="type" column="type"/>
<result property="mappingguid" column="mappingguid"/>
<result property="iconId" column="icon_id"/>
<result property="teamType" column="team_type"/>
<!-- 其他字段 -->
</resultMap>
<select id="list" resultMap="DMTeamInfo" parameterType="com.hivekion.team.entity.Teaminfo" databaseId="dm">