package command import ( "fmt" "github.com/beego/beego/v2/core/validation" "gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/domain" ) // Command type CreditAccountPayCommand struct { //操作人 Operator domain.Operator `json:"-"` CreditAccountId int `json:"creditAccountId"` // 账期结算实付金额 ActuallyPaidAmount float64 `cname:"账期结算实付金额" json:"actuallyPaidAmount" valid:"Required"` // 备注 Remarks string `cname:"备注" json:"remark"` Attachment []domain.Attachment `json:"paymentDocumentAttachment"` //附件 } func (cmd *CreditAccountPayCommand) Valid(validation *validation.Validation) { } func (cmd *CreditAccountPayCommand) ValidateCommand() error { valid := validation.Validation{} b, err := valid.Valid(cmd) if err != nil { return err } if !b { for _, validErr := range valid.Errors { return fmt.Errorf("%s %s", validErr.Key, validErr.Message) } } return nil }