service/api/proto/thumbsup/proto/not_null_def_api.go

12 lines
300 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 proto
import "service/library/validator"
func (p ApiListReq) ProvideNotNullValue() (params []*validator.JsonParam) {
params = make([]*validator.JsonParam, 0)
params = append(params, validator.NewInt64PtrParam("请输入待查询动态点赞详情的动态id", p.MomentId))
return
}