Files
Go-Web-Template/server/model/common/exa_breakpoint_continue.go
2026-04-08 12:19:24 +08:00

25 lines
441 B
Go

package common
import (
"github.com/flipped-aurora/gin-vue-admin/server/global"
)
// file struct, 文件结构体
type ExaFile struct {
global.GVA_MODEL
FileName string
FileMd5 string
FilePath string
ExaFileChunk []ExaFileChunk
ChunkTotal int
IsFinish bool
}
// file chunk struct, 切片结构体
type ExaFileChunk struct {
global.GVA_MODEL
ExaFileID uint
FileChunkNumber int
FileChunkPath string
}