Files
quyun-v2/backend/app/http/super/v1/dto/super_creator.go

10 lines
344 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package dto
// SuperCreatorApplicationReviewForm 超管创作者申请审核表单。
type SuperCreatorApplicationReviewForm struct {
// Action 审核动作approve/reject
Action string `json:"action" validate:"required,oneof=approve reject"`
// Reason 审核说明(可选,驳回时填写)。
Reason string `json:"reason"`
}