This commit is contained in:
wucongxing8150 2024-10-14 10:26:29 +08:00
parent b9f10aa644
commit f18c3ec306

View File

@ -106,5 +106,5 @@ type PutQuestionStatus struct {
// PutQuestionHideStatus 操作问题隐藏状态 // PutQuestionHideStatus 操作问题隐藏状态
type PutQuestionHideStatus struct { type PutQuestionHideStatus struct {
IsHide int `json:"is_hide" form:"is_hide" label:"状态" validate:"required,oneof=0 1"` // 是否隐藏0:否 1:是) IsHide int `json:"is_hide" form:"is_hide" label:"状态" validate:"oneof=0 1"` // 是否隐藏0:否 1:是)
} }