46 lines
1.3 KiB
Go
46 lines
1.3 KiB
Go
package file
|
|
|
|
import (
|
|
"gitea.redpowerfuture.com/red-future/common/beans"
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
type CreateFileTempReq struct {
|
|
g.Meta `path:"/create" method:"post" tags:"临时文件管理" summary:"创建临时文件" dc:"创建临时文件"`
|
|
|
|
BusinessId string `json:"businessId"`
|
|
FileUrl string `json:"fileUrl"`
|
|
}
|
|
|
|
type CreateFileTempRes struct {
|
|
Id int64 `json:"id,string"`
|
|
}
|
|
|
|
type DeleteFileTempReq struct {
|
|
g.Meta `path:"/delete" method:"delete" tags:"临时文件管理" summary:"删除临时文件" dc:"删除临时文件"`
|
|
|
|
Id int64 `json:"id" v:"required#ID不能为空"`
|
|
}
|
|
|
|
type ListFileTempReq struct {
|
|
g.Meta `path:"/list" method:"get" tags:"临时文件管理" summary:"临时文件列表" dc:"临时文件列表"`
|
|
|
|
Page *beans.Page `json:"page"`
|
|
BusinessId string `json:"businessId"`
|
|
CreatedAt *gtime.Time `json:"createdAt"`
|
|
}
|
|
|
|
type ListFileTempRes struct {
|
|
List []*FileTempVO `json:"list"`
|
|
Total int `json:"total"`
|
|
}
|
|
|
|
type FileTempVO struct {
|
|
Id int64 `json:"id,string" dc:"id"`
|
|
BusinessId string `json:"businessId"`
|
|
FileUrl string `json:"fileUrl"`
|
|
CreatedAt *gtime.Time `json:"createdAt" dc:"创建时间"`
|
|
UpdatedAt *gtime.Time `json:"updatedAt" dc:"更新时间"`
|
|
}
|