123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package request
- import (
- common "github.com/flipped-aurora/gin-vue-admin/server/model/common/request"
- model "github.com/flipped-aurora/gin-vue-admin/server/model/system"
- )
- type SysAutoHistoryCreate struct {
- Table string // 表名
- Package string // 模块名/插件名
- Request string // 前端传入的结构化信息
- StructName string // 结构体名称
- BusinessDB string // 业务库
- Description string // Struct中文名称
- Injections map[string]string // 注入路径
- Templates map[string]string // 模板信息
- ApiIDs []uint // api表注册内容
- MenuID uint // 菜单ID
- ExportTemplateID uint // 导出模板ID
- }
- func (r *SysAutoHistoryCreate) Create() model.SysAutoCodeHistory {
- entity := model.SysAutoCodeHistory{
- Package: r.Package,
- Request: r.Request,
- Table: r.Table,
- StructName: r.StructName,
- Abbreviation: r.StructName,
- BusinessDB: r.BusinessDB,
- Description: r.Description,
- Injections: r.Injections,
- Templates: r.Templates,
- ApiIDs: r.ApiIDs,
- MenuID: r.MenuID,
- ExportTemplateID: r.ExportTemplateID,
- }
- if entity.Table == "" {
- entity.Table = r.StructName
- }
- return entity
- }
- type SysAutoHistoryRollBack struct {
- common.GetById
- DeleteApi bool `json:"deleteApi" form:"deleteApi"` // 是否删除接口
- DeleteMenu bool `json:"deleteMenu" form:"deleteMenu"` // 是否删除菜单
- DeleteTable bool `json:"deleteTable" form:"deleteTable"` // 是否删除表
- }
- func (r *SysAutoHistoryRollBack) ApiIds(entity model.SysAutoCodeHistory) common.IdsReq {
- length := len(entity.ApiIDs)
- ids := make([]int, 0)
- for i := 0; i < length; i++ {
- ids = append(ids, int(entity.ApiIDs[i]))
- }
- return common.IdsReq{Ids: ids}
- }
|