Skip to content

Commit

Permalink
feat: 作业集列表接口添加返回状态字段
Browse files Browse the repository at this point in the history
  • Loading branch information
dragove committed Mar 29, 2024
1 parent c8d1969 commit dbc2eb1
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package plus.maa.backend.controller.response.copilotset

import io.swagger.v3.oas.annotations.media.Schema
import plus.maa.backend.service.model.CopilotSetStatus
import java.time.LocalDateTime

/**
Expand All @@ -24,6 +25,9 @@ data class CopilotSetListRes (
@Schema(title = "上传者昵称")
val creator: String,

@Schema(title = "作业状态", enumAsRef = true)
val status: CopilotSetStatus,

@Schema(title = "创建时间")
val createTime: LocalDateTime,

Expand Down

0 comments on commit dbc2eb1

Please sign in to comment.