Files
PandaX/apps/system/router/notice.go
PandaX-Go 77ac18c21b [优化]
2024-08-25 19:58:05 +08:00

59 lines
2.1 KiB
Go

package router
import (
"github.com/PandaXGO/PandaKit/model"
"github.com/PandaXGO/PandaKit/restfulx"
"pandax/apps/system/api"
"pandax/apps/system/entity"
"pandax/apps/system/services"
restfulspec "github.com/emicklei/go-restful-openapi/v2"
"github.com/emicklei/go-restful/v3"
)
func InitNoticeRouter(container *restful.Container) {
s := &api.NoticeApi{
OrganizationApp: services.SysOrganizationModelDao,
NoticeApp: services.SysNoticeModelDao,
}
ws := new(restful.WebService)
ws.Path("/system/notice").Produces(restful.MIME_JSON)
tags := []string{"system", "通知"}
ws.Route(ws.GET("/list").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("获取通知分页列表").Handle(s.GetNoticeList)
}).
Doc("获取通知分页列表").
Metadata(restfulspec.KeyOpenAPITags, tags).
Param(ws.QueryParameter("pageNum", "页数").Required(true).DataType("int")).
Param(ws.QueryParameter("pageSize", "每页条数").Required(true).DataType("int")).
Param(ws.QueryParameter("noticeType", "noticeType").DataType("string")).
Param(ws.QueryParameter("title", "title").DataType("string")).
Writes(model.ResultPage{}).
Returns(200, "OK", model.ResultPage{}))
ws.Route(ws.POST("").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("添加通知信息").Handle(s.InsertNotice)
}).
Doc("添加通知信息").
Metadata(restfulspec.KeyOpenAPITags, tags).
Reads(entity.SysNotice{}))
ws.Route(ws.PUT("").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("修改通知信息").Handle(s.UpdateNotice)
}).
Doc("修改通知信息").
Metadata(restfulspec.KeyOpenAPITags, tags).
Reads(entity.SysNotice{}))
ws.Route(ws.DELETE("/{noticeId}").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("删除通知信息").Handle(s.DeleteNotice)
}).
Doc("删除通知信息").
Metadata(restfulspec.KeyOpenAPITags, tags).
Param(ws.PathParameter("noticeId", "多id 1,2,3").DataType("string")))
container.Add(ws)
}