Temp AvatarController

This commit is contained in:
2023-11-16 18:16:38 +08:00
parent 4e78c89f5b
commit c34d26af88
4 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package top.fatweb.api.vo.api.v1.avatar
import io.swagger.v3.oas.annotations.media.Schema
@Schema(description = "默认随机头像 Base64 返回参数")
data class DefaultBase64Vo(
@Schema(description = "base64")
val base64: String?
)