lckt-server/model/example/exa_breakpoint_continue.go
2025-04-09 12:17:33 +08:00

25 lines
419 B
Go

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