diff --git a/upstream/itao/itao_refund.go b/upstream/itao/itao_refund.go
index c6470d06b3bfe23952a4f73718d5466426348836..480278bcd5fae557ae9d17d3722d1129e5fd85c9 100644
--- a/upstream/itao/itao_refund.go
+++ b/upstream/itao/itao_refund.go
@@ -41,9 +41,10 @@ func (s refund) Before(ctx context.Context, req string) (res *RefundBeforeRes, e
 }
 
 type RefundReasonReq struct {
-	BizOrderId   string `json:"bizOrderId"`
-	BizClaimType string `json:"bizClaimType"`
-	GoodsStatus  string `json:"goodsStatus,omitempty"`
+	BizOrderId       string `json:"bizOrderId"`
+	BizClaimType     string `json:"bizClaimType"`
+	GoodsStatus      string `json:"goodsStatus,omitempty"`
+	BuyerApplyTextId int    `json:"buyerApplyTextId,omitempty"`
 }
 
 type RefundReasonRes struct {
@@ -107,7 +108,7 @@ func (s refund) Create(ctx context.Context, req RefundCreateReq, image ...string
 	return
 }
 
-//Cancle 取消售后
+//Cancel 取消售后
 //`bizOrderId` 子订单号
 //`disputeId` 售后单号
 func (s refund) Cancel(ctx context.Context, bizOrderId, disputeId string) (res *CommonRes, err error) {