2020-04-08 14:00:08 +08:00
|
|
|
package response
|
|
|
|
|
2021-08-21 11:01:34 +08:00
|
|
|
import "github.com/flipped-aurora/gin-vue-admin/model/example"
|
2020-04-08 14:00:08 +08:00
|
|
|
|
|
|
|
type FilePathResponse struct {
|
|
|
|
FilePath string `json:"filePath"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type FileResponse struct {
|
2021-07-16 20:08:11 +08:00
|
|
|
File example.ExaFile `json:"file"`
|
2020-05-19 22:08:45 +08:00
|
|
|
}
|