feat(app): update
This commit is contained in:
40
pkg/dto/inner/PayToCustomerByAlipayRequest.go
Normal file
40
pkg/dto/inner/PayToCustomerByAlipayRequest.go
Normal file
@ -0,0 +1,40 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user