feat: 档口入库码支持软删除与重导恢复 (#238)

This commit is contained in:
chengma
2026-08-15 10:49:28 +08:00
parent 4cbdc81a30
commit 2aea22b44d
13 changed files with 515 additions and 26 deletions
+1
View File
@@ -119,6 +119,7 @@ func Register(r *gin.Engine, db *sql.DB, onlineThreshold time.Duration, aiSecret
pages.GET("/inner-codes", h.InnerCodeList)
innerCodes := pages.Group("/inner-codes")
innerCodes.POST("/import", h.InnerCodeImport)
innerCodes.POST("/delete", h.InnerCodeDelete)
innerCodes.POST("/match", h.InnerCodeMatch)
innerCodes.POST("/apply", h.InnerCodeApply)
innerCodes.POST("/recheck", h.InnerCodeRecheck)