10 lines
344 B
Go
10 lines
344 B
Go
package dto
|
||
|
||
// SuperCreatorApplicationReviewForm 超管创作者申请审核表单。
|
||
type SuperCreatorApplicationReviewForm struct {
|
||
// Action 审核动作(approve/reject)。
|
||
Action string `json:"action" validate:"required,oneof=approve reject"`
|
||
// Reason 审核说明(可选,驳回时填写)。
|
||
Reason string `json:"reason"`
|
||
}
|