This commit is contained in:
苏尹岚
2020-12-31 15:43:33 +08:00
parent 8434c19887
commit 3de4615719
4 changed files with 58 additions and 2 deletions

View File

@@ -150,3 +150,10 @@ func FinishedCashOrders(ctx *jxcontext.Context, orderIDs []string) (err error) {
}
return err
}
func GetPayStatistics(ctx *jxcontext.Context, userID string, pop int, cityCodes []int, mobile, fromTime, toTime string, consumeTypes []int) (getPayStatisticsResult *dao.GetPayStatisticsResult, err error) {
var (
db = dao.GetDB()
)
return dao.GetPayStatistics(db, userID, pop, cityCodes, mobile, utils.Str2Time(fromTime), utils.Str2Time(toTime), consumeTypes)
}