1234567891011121314151617181920212223242526272829303132 |
- import service from '@/utils/request'
- // @Tags FileUploadAndDownload
- // @Summary 分页文件列表
- // @Security ApiKeyAuth
- // @accept application/json
- // @Produce application/json
- // @Param data body modelInterface.PageInfo true "分页获取文件户列表"
- // @Success 200 {string} json "{"success":true,"data":{},"msg":"获取成功"}"
- // @Router /fileUploadAndDownload/getFileList [post]
- export const getFileList = (data) => {
- return service({
- url: '/fileUploadAndDownload/getFileList',
- method: 'post',
- data
- })
- }
- // @Tags FileUploadAndDownload
- // @Summary 删除文件
- // @Security ApiKeyAuth
- // @Produce application/json
- // @Param data body dbModel.FileUploadAndDownload true "传入文件里面id即可"
- // @Success 200 {string} json "{"success":true,"data":{},"msg":"返回成功"}"
- // @Router /fileUploadAndDownload/deleteFile [post]
- export const deleteFile = (data) => {
- return service({
- url: '/fileUploadAndDownload/deleteFile',
- method: 'post',
- data
- })
- }
|