统计订单接口修改

This commit is contained in:
苏尹岚
2019-10-31 10:25:21 +08:00
parent 5284267133
commit 8ed5172f35
3 changed files with 30 additions and 21 deletions

View File

@@ -13,10 +13,10 @@ type ReportController struct {
// @Title 查询订单统计信息
// @Description 根据门店idlist和时间范围查询
// @Param token header string true "认证token"
// @Param token header string true "认证token"
// @Param storeIDs formData string true "京西门店ID列表[1,2,3]"
// @Param fromDate formData string false "开始日期包含格式2006-01-02 00:00:00)"
// @Param toDate formData string false "结束日期包含格式2006-01-02 00:00:00)"
// @Param fromDate formData string true "开始日期包含格式2006-01-02 00:00:00)"
// @Param toDate formData string true "结束日期包含格式2006-01-02 00:00:00)"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /StatisticsReportForOrders [post]