zhangqian
2023-08-28 e517b1a99b6edfa24c8cc4e109a6a10488f23b6a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package system
 
import (
    "github.com/gin-gonic/gin"
    v1 "srm/api/v1"
)
 
type AutoCodeHistoryRouter struct{}
 
func (s *AutoCodeRouter) InitAutoCodeHistoryRouter(Router *gin.RouterGroup) {
    autoCodeHistoryRouter := Router.Group("autoCode")
    autoCodeHistoryApi := v1.ApiGroupApp.SystemApiGroup.AutoCodeHistoryApi
    {
        autoCodeHistoryRouter.POST("getMeta", autoCodeHistoryApi.First)         // 根据id获取meta信息
        autoCodeHistoryRouter.POST("rollback", autoCodeHistoryApi.RollBack)     // 回滚
        autoCodeHistoryRouter.POST("delSysHistory", autoCodeHistoryApi.Delete)  // 删除回滚记录
        autoCodeHistoryRouter.POST("getSysHistory", autoCodeHistoryApi.GetList) // 获取回滚记录分页
    }
}