14 lines
288 B
Go
14 lines
288 B
Go
package validator
|
|
|
|
import "lone-services/pkg/validate"
|
|
|
|
// CartEditValidator 查看列表
|
|
type CartEditValidator struct {
|
|
Info string
|
|
}
|
|
|
|
// GetMessage 查看列表 - 提示消息
|
|
func (p CartEditValidator) GetMessage() validate.ValidatorMessages {
|
|
return validate.ValidatorMessages{}
|
|
}
|