This commit is contained in:
suyl
2021-07-21 09:54:21 +08:00
parent ac63eccda8
commit 5d5a134c55

View File

@@ -8,7 +8,9 @@ import (
type CallbackController struct {
}
func (t *CallbackController) TlPayCallback(c *gin.Context) {
services.SimFlowDaySettle()
c.JSON(200, &CallBack{})
func (t *CallbackController) Msg(c *gin.Context) {
err := services.SimFlowDaySettle()
c.JSON(200, &CallBack{
Desc: err.Error(),
})
}