This commit is contained in:
邹宗楠
2023-06-15 09:08:54 +08:00
parent d37bb62403
commit 65976332fc
749 changed files with 41278 additions and 14 deletions

View File

@@ -0,0 +1,22 @@
package domain
type AlibabaWdkOldposOrderCreatePosPayChannel struct {
/*
该支付方式对应的支付金额 */
PayAmount *int64 `json:"pay_amount,omitempty" `
/*
支付方式编码,盒马给出了常见支付方式的编码 */
PayType *string `json:"pay_type,omitempty" `
}
func (s *AlibabaWdkOldposOrderCreatePosPayChannel) SetPayAmount(v int64) *AlibabaWdkOldposOrderCreatePosPayChannel {
s.PayAmount = &v
return s
}
func (s *AlibabaWdkOldposOrderCreatePosPayChannel) SetPayType(v string) *AlibabaWdkOldposOrderCreatePosPayChannel {
s.PayType = &v
return s
}