15 lines
252 B
Go
15 lines
252 B
Go
package controllers
|
|
|
|
import (
|
|
"git.rosy.net.cn/jx-print/services"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type CallbackController struct {
|
|
}
|
|
|
|
func (t *CallbackController) TlPayCallback(c *gin.Context) {
|
|
services.SimFlowDaySettle()
|
|
c.JSON(200, &CallBack{})
|
|
}
|