修改淘宝订单的平台结算获取方式

This commit is contained in:
邹宗楠
2023-12-06 13:43:29 +08:00
parent d606d5b756
commit a3f88eceef
28 changed files with 1374 additions and 276 deletions

View File

@@ -0,0 +1,38 @@
package domain
type AlibabaAelophyOrderGetPlatformDeduction struct {
/*
技术服务费 */
TechnicalServiceFee *int64 `json:"technical_service_fee,omitempty" `
/*
支付服务费 */
PayServiceFee *int64 `json:"pay_service_fee,omitempty" `
/*
基础物流费 */
BaseLogisticsFee *int64 `json:"base_logistics_fee,omitempty" `
/*
代运营服务费 */
ThirdpartnarFee *int64 `json:"thirdpartnar_fee,omitempty" `
}
func (s *AlibabaAelophyOrderGetPlatformDeduction) SetTechnicalServiceFee(v int64) *AlibabaAelophyOrderGetPlatformDeduction {
s.TechnicalServiceFee = &v
return s
}
func (s *AlibabaAelophyOrderGetPlatformDeduction) SetPayServiceFee(v int64) *AlibabaAelophyOrderGetPlatformDeduction {
s.PayServiceFee = &v
return s
}
func (s *AlibabaAelophyOrderGetPlatformDeduction) SetBaseLogisticsFee(v int64) *AlibabaAelophyOrderGetPlatformDeduction {
s.BaseLogisticsFee = &v
return s
}
func (s *AlibabaAelophyOrderGetPlatformDeduction) SetThirdpartnarFee(v int64) *AlibabaAelophyOrderGetPlatformDeduction {
s.ThirdpartnarFee = &v
return s
}