mirror of
https://github.com/flipped-aurora/gin-vue-admin.git
synced 2024-04-21 12:32:43 +00:00
12 lines
286 B
Go
12 lines
286 B
Go
package response
|
|
|
|
import "github.com/flipped-aurora/gin-vue-admin/server/model/example"
|
|
|
|
type FilePathResponse struct {
|
|
FilePath string `json:"filePath" comment:"文件路径" example:"xxx/xx"`
|
|
}
|
|
|
|
type FileResponse struct {
|
|
File example.ExaFile `json:"file" comment:"文件详情"`
|
|
}
|