16 lines
228 B
Go
16 lines
228 B
Go
package archive
|
|
|
|
import xtime "go-common/library/time"
|
|
|
|
// Cover str
|
|
type Cover struct {
|
|
Filename string
|
|
TotalNum int
|
|
IndexNum int
|
|
NFSPath string
|
|
BFSPath string
|
|
Used int64
|
|
CTime xtime.Time
|
|
MTime xtime.Time
|
|
}
|