This commit is contained in:
苏尹岚
2020-12-25 10:25:07 +08:00
parent 68e9c5571c
commit 0210024dc4
5 changed files with 111 additions and 2 deletions

View File

@@ -203,6 +203,20 @@ func (c *JobController) AuditJob() {
})
}
// @Title 确认收货(一件代发)
// @Description 确认收货(一件代发)
// @Param token header string true "认证token"
// @Param jobOrderID formData int true "jobOrderID"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /ConfirmDropShippingJob [post]
func (c *JobController) ConfirmDropShippingJob() {
c.callConfirmDropShippingJob(func(params *tJobConfirmDropShippingJobParams) (retVal interface{}, errCode string, err error) {
err = cms.ConfirmDropShippingJob(params.Ctx, params.JobOrderID)
return retVal, "", err
})
}
// @Title 导入美团会员
// @Description 导入美团会员
// @Param token header string false "认证token"