by Robin at 20240511

This commit is contained in:
Leufolium 2024-05-11 18:22:17 +08:00
parent 77efdcc607
commit f7f6535cc0
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
package proto
import (
"service/library/validator"
)
func (p *OpSetIsHidedReq) ProvideNotNullValue() (params []*validator.JsonParam) {
params = make([]*validator.JsonParam, 0)
params = append(params, validator.NewInt64PtrParam("请填写空间id", p.Zid))
params = append(params, validator.NewInt64PtrParam("请填写是否隐藏!", p.IsHided))
return
}