Finish avatar api

This commit is contained in:
2023-11-27 18:17:45 +08:00
parent e997396663
commit bffd72b467
9 changed files with 109 additions and 69 deletions

View File

@@ -3,13 +3,13 @@ package top.fatweb.api.vo.api.v1.avatar
import io.swagger.v3.oas.annotations.media.Schema
/**
* Default base64 value object
* Avatar base64 value object
*
* @author FatttSnake, fatttsnake@gmail.com
* @since 1.0.0
*/
@Schema(description = "默认随机头像 Base64 返回参数")
data class DefaultBase64Vo(
@Schema(description = "头像 Base64 返回参数")
data class AvatarBase64Vo(
@Schema(description = "base64")
val base64: String?
)