remove_notice_setting.go
720 字节
package command
import (
"fmt"
"github.com/beego/beego/v2/core/validation"
)
type RemoveNoticeSettingCommand struct {
// 消息id
NoticeSettingId int64 `json:"noticeSettingId" valid:"Required"`
}
func (removeNoticeSettingCommand *RemoveNoticeSettingCommand) Valid(validation *validation.Validation) {
validation.SetError("CustomValid", "未实现的自定义认证")
}
func (removeNoticeSettingCommand *RemoveNoticeSettingCommand) ValidateCommand() error {
valid := validation.Validation{}
b, err := valid.Valid(removeNoticeSettingCommand)
if err != nil {
return err
}
if !b {
for _, validErr := range valid.Errors {
return fmt.Errorf("%s %s", validErr.Key, validErr.Message)
}
}
return nil
}