This commit is contained in:
邹宗楠
2022-10-18 10:30:37 +08:00
parent c0d92f612e
commit 03069ce0fe
19 changed files with 187 additions and 19 deletions

View File

@@ -15,10 +15,13 @@ func InitV3App(v1 *gin.RouterGroup) {
// 获取短信
appNo.POST("/sendVerifyCode", app.VerificationController.SendVerifyCode) // 获取短信验证码
appNo.GET("/getPrintIsUse", app.PrintController.GetPrintIsUse) // 打印消息统计
appNo.GET("/getPrintIsUse", app.PrintController.GetPrintIsUse) // 查询打印机是否被使用
// 支付回调
appNo.POST("/payCallBack", app.Auth2ControllerController.PayCallBack)
// 门店失去授权回调
appNo.POST("/loseAuthorize", app.PrinterBindStoreController.LoseStoreAuthorize)
// 获取小程序跳转连接
appNo.GET("/getMinJupLink", app.Auth2ControllerController.MiniProgramSortLink)
}