Add store get tool api

This commit is contained in:
2024-02-17 14:24:42 +08:00
parent b32f062594
commit c5dcb432ef
10 changed files with 239 additions and 5 deletions

View File

@@ -4,7 +4,7 @@ import io.swagger.v3.oas.annotations.media.Schema
import top.fatweb.oxygen.api.param.PageSortParam
/**
* Get tool in management parameters
* Get tool parameters in tool management
*
* @author FatttSnake, fatttsnake@gmail.com
* @since 1.0.0

View File

@@ -4,7 +4,7 @@ import io.swagger.v3.oas.annotations.media.Schema
import jakarta.validation.constraints.NotBlank
/**
* Pass tool in management parameters
* Pass tool parameters in tool management
*
* @author FatttSnake, fatttsnake@gmail.com
* @since 1.0.0

View File

@@ -0,0 +1,16 @@
package top.fatweb.oxygen.api.param.tool
import io.swagger.v3.oas.annotations.media.Schema
import top.fatweb.oxygen.api.param.PageSortParam
/**
* Get tool parameters in tool store
*
* @author FatttSnake, fatttsnake@gmail.com
* @since 1.0.0
* @see PageSortParam
*/
data class ToolStoreGetParam(
@Schema(description = "查询内容", example = "ToolName")
val searchValue: String?
) : PageSortParam()