From 3f45cb79627af3c6d761b27ce32478c2c2404ced Mon Sep 17 00:00:00 2001 From: tianheng2017 Date: Thu, 23 Feb 2023 08:48:03 +0000 Subject: [PATCH] =?UTF-8?q?update=20server/admin/service/system/auth=5Fpos?= =?UTF-8?q?t.go.=20=E8=BF=99=E4=B8=A4=E5=8F=A5=E4=BC=BC=E4=B9=8E=E6=B2=A1?= =?UTF-8?q?=E4=BB=80=E4=B9=88=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: tianheng2017 --- server/admin/service/system/auth_post.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/admin/service/system/auth_post.go b/server/admin/service/system/auth_post.go index 54a50ce..23f8067 100644 --- a/server/admin/service/system/auth_post.go +++ b/server/admin/service/system/auth_post.go @@ -28,8 +28,6 @@ func (postSrv systemAuthPostService) All() []resp.SystemAuthPostResp { //List 岗位列表 func (postSrv systemAuthPostService) List(page request.PageReq, listReq req.SystemAuthPostListReq) response.PageResp { // 分页信息 - var res response.PageResp - response.Copy(&res, page) limit := page.PageSize offset := page.PageSize * (page.PageNo - 1) // 查询 -- Gitee