![JAR search and dependency download from the Maven repository](/logo.png)
com.gitee.sergius.apitool.entity.YamlEntity Maven / Gradle / Ivy
package com.gitee.sergius.apitool.entity;
import java.util.ArrayList;
import java.util.List;
/**
* @author shawn yang
* @version 1.0.0
* 用于存储每个分组标签信息的实体
*
*/
public class YamlEntity {
private String tag;
private List subEntityList = new ArrayList<>();
/**
* 获取标签名称
*/
public String getTag() {
return tag;
}
/**
* 设置标签名称
*/
public void setTag(String tag) {
this.tag = tag;
}
/**
* 获取该分组标签下的接口信息
*/
public List getSubEntityList() {
return subEntityList;
}
/**
* 设置该分组标签下的接口信息
* @param subEntityList
*/
public void setSubEntityList(List subEntityList) {
this.subEntityList = subEntityList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy