From 4b63908ad085bc570623f7b0c0fd397b2ae7a80d Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期一, 07 八月 2023 15:41:32 +0800 Subject: [PATCH] 增加文件列表接口,文件上传时间,文件删除时间 --- model/request/client.go | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/model/request/client.go b/model/request/client.go index 7e547f5..527f503 100644 --- a/model/request/client.go +++ b/model/request/client.go @@ -26,3 +26,12 @@ Id int `json:"id"` Client } + +type GetClientList struct { + PageInfo + Keyword string `json:"keyword"` +} + +type DeleteClient struct { + Ids []int `json:"ids"` +} -- Gitblit v1.8.0