package tech.aiflowy.ai.entity.base; import com.mybatisflex.annotation.Id; import com.mybatisflex.annotation.KeyType; import java.io.Serializable; import java.math.BigInteger; public class AiBotPluginsBase implements Serializable { private static final long serialVersionUID = 1L; @Id(keyType = KeyType.Generator, value = "snowFlakeId") private BigInteger id; private BigInteger botId; private BigInteger pluginToolId; private String options; public BigInteger getId() { return id; } public void setId(BigInteger id) { this.id = id; } public BigInteger getBotId() { return botId; } public void setBotId(BigInteger botId) { this.botId = botId; } public BigInteger getPluginToolId() { return pluginToolId; } public void setPluginToolId(BigInteger pluginToolId) { this.pluginToolId = pluginToolId; } public String getOptions() { return options; } public void setOptions(String options) { this.options = options; } }