diff --git a/param/admin/kind_box_req/reject.go b/param/admin/kind_box_req/reject.go index 56119b1..a000e42 100644 --- a/param/admin/kind_box_req/reject.go +++ b/param/admin/kind_box_req/reject.go @@ -15,7 +15,6 @@ type KindBoxReqRejectResponse struct { ID uint `json:"id"` KindBoxType entity.KindBoxType `json:"kind_box_type"` CountRequested uint `json:"count_requested"` - CountAccepted uint `json:"count_accepted"` BenefactorID uint `json:"benefactor_id"` Status entity.KindBoxReqStatus `json:"status"` Description string `json:"description"` diff --git a/service/admin/kind_box_req/reject.go b/service/admin/kind_box_req/reject.go index 1734bca..0c8e66e 100644 --- a/service/admin/kind_box_req/reject.go +++ b/service/admin/kind_box_req/reject.go @@ -26,7 +26,6 @@ func (s Service) Reject(ctx context.Context, req param.KindBoxReqRejectRequest) ID: kindBoxReq.ID, KindBoxType: kindBoxReq.KindBoxType, CountRequested: kindBoxReq.CountRequested, - CountAccepted: kindBoxReq.CountAccepted, BenefactorID: kindBoxReq.BenefactorID, Status: kindBoxReq.Status, Description: kindBoxReq.Description,