service/library/validator/not_null_item.go

10 lines
135 B
Go
Raw Normal View History

2023-12-21 22:17:40 +08:00
package validator
type NotNullItem interface {
ProvideNotNullValue() []*JsonParam
}
type NullableItem interface {
IsEmpty() bool
}