Files
servicebase/pkg/dto/inner/PayToCustomerByAlipayRequest.go
2025-11-19 14:24:13 +08:00

41 lines
745 B
Go

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
}