Files
st/server/model/example/exa_breakpoint_continue.go
2026-02-10 17:48:27 +08:00

25 lines
424 B
Go

package example
import (
"git.echol.cn/loser/st/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
}