完成文章模板功能
parent
33e10b99ab
commit
bf9fe046ee
|
@ -809,4 +809,29 @@ func DeleteDocTemplate(c *gin.Context) {
|
||||||
resp.Data = nil
|
resp.Data = nil
|
||||||
resp.Msg = "OK"
|
resp.Msg = "OK"
|
||||||
resp.Status = 0
|
resp.Status = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetDocTemplateId(c *gin.Context) {
|
||||||
|
resp := RespBase{}
|
||||||
|
defer func() {
|
||||||
|
c.JSON(200, resp)
|
||||||
|
}()
|
||||||
|
sid := c.Param("id")
|
||||||
|
id,e := strconv.Atoi(sid)
|
||||||
|
if nil != e{
|
||||||
|
log.Print(e.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
ret,e := model.ReadDocTemplate(int32(id))
|
||||||
|
if nil != e{
|
||||||
|
log.Print(e.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if len(ret) > 0{
|
||||||
|
resp.Data = ret[0]
|
||||||
|
}else{
|
||||||
|
resp.Data = nil
|
||||||
|
}
|
||||||
|
resp.Msg = "OK"
|
||||||
|
resp.Status = 0
|
||||||
}
|
}
|
2
main.go
2
main.go
|
@ -191,6 +191,8 @@ func main() {
|
||||||
api.POST("/doc_template",controller.UpdateDocTemplate)
|
api.POST("/doc_template",controller.UpdateDocTemplate)
|
||||||
api.POST("/get_doc_template",controller.GetDocTemplate)
|
api.POST("/get_doc_template",controller.GetDocTemplate)
|
||||||
api.DELETE("/doc_template/:id",controller.DeleteDocTemplate)
|
api.DELETE("/doc_template/:id",controller.DeleteDocTemplate)
|
||||||
|
api.GET("/doc_template/:id",controller.GetDocTemplateId)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
openapi := r.Group("openapi")
|
openapi := r.Group("openapi")
|
||||||
|
|
Loading…
Reference in New Issue