新接口,得到我的守价订单

This commit is contained in:
苏尹岚
2020-08-21 14:12:51 +08:00
parent 63fb0222d3
commit 2f5c7e0526
6 changed files with 77 additions and 14 deletions

View File

@@ -255,3 +255,18 @@ func (c *JxOrderController) GetSupplySupportStoreSkus() {
return retVal, "", err
})
}
// @Title 得到自己的守价订单列表
// @Description 得到自己的守价订单列表
// @Param token header string true "认证token"
// @Param fromTime query string false "开始日期包含格式2006-01-02 00:00:00"
// @Param toTime query string false "结束日期包含格式2006-01-02 00:00:00"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /GetMyPriceDefendOrders [get]
func (c *JxOrderController) GetMyPriceDefendOrders() {
c.callGetMyPriceDefendOrders(func(params *tJxorderGetMyPriceDefendOrdersParams) (retVal interface{}, errCode string, err error) {
return retVal, "", err
})
}