Files
baseapi/platformapi/tao_vegetable/sdk/ability3156/domain/AlibabaTclsAelophyRefundCsapplyNewCsApplySubOrderDTO.go
邹宗楠 65976332fc 1
2023-06-15 09:08:54 +08:00

31 lines
983 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package domain
type AlibabaTclsAelophyRefundCsapplyNewCsApplySubOrderDTO struct {
/*
申请子单退款金额 */
RefundFee *string `json:"refund_fee,omitempty" `
/*
申请子单退货数量 */
RefundAmount *string `json:"refund_amount,omitempty" `
/*
渠道子订单号淘鲜达渠道为TP子单号 */
OutSubOrderId *string `json:"out_sub_order_id,omitempty" `
}
func (s *AlibabaTclsAelophyRefundCsapplyNewCsApplySubOrderDTO) SetRefundFee(v string) *AlibabaTclsAelophyRefundCsapplyNewCsApplySubOrderDTO {
s.RefundFee = &v
return s
}
func (s *AlibabaTclsAelophyRefundCsapplyNewCsApplySubOrderDTO) SetRefundAmount(v string) *AlibabaTclsAelophyRefundCsapplyNewCsApplySubOrderDTO {
s.RefundAmount = &v
return s
}
func (s *AlibabaTclsAelophyRefundCsapplyNewCsApplySubOrderDTO) SetOutSubOrderId(v string) *AlibabaTclsAelophyRefundCsapplyNewCsApplySubOrderDTO {
s.OutSubOrderId = &v
return s
}