Files
oxygen-api/src/main/kotlin/top/fatweb/api/param/system/SysLogGetParam.kt
2023-11-03 18:30:05 +08:00

9 lines
256 B
Kotlin

package top.fatweb.api.param.system
import io.swagger.v3.oas.annotations.media.Schema
import top.fatweb.api.param.PageParam
@Schema(description = "获取系统日志请求参数")
data class SysLogGetParam(
val logType: String? = null
) : PageParam()