wangpengfei
2023-08-25 25c573d55986e02cf5f70cc3868e2b94a4be98e2
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) // 获取回滚记录分页
    }
}