package inner import "errors" type PayToCustomerByAlipayRequest struct { OutId string PayAmount string TrueName string AlipayAccount string Remark string } // 参数合法性检验 func (request *PayToCustomerByAlipayRequest) CheckParameter() (err error) { if len(request.OutId) == 0 { err = errors.New("OutId不能为空") return } if len(request.PayAmount) == 0 { err = errors.New("PayAmount不能为空") return } if len(request.AlipayAccount) == 0 { err = errors.New("AlipayAccount不能为空") return } if len(request.TrueName) == 0 { err = errors.New("TrueName不能为空") return } if len(request.Remark) == 0 { err = errors.New("Remark不能为空") return } return }