Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FileCheckTask ¶
type FileCheckTask struct {
Id int `json:"id" orm:"id" description:""`
Path string `json:"path" orm:"path" description:""`
Filename string `json:"filename" orm:"filename" description:""`
Duration int `json:"duration" orm:"duration" description:""`
Progress int `json:"progress" orm:"progress" description:""`
FileStatus int `json:"fileStatus" orm:"file_status" description:""`
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:""`
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:""`
}
FileCheckTask is the golang structure for table file_check_task.
type FileSyncTask ¶ added in v0.2.3
type FileSyncTask struct {
Id int `json:"id" orm:"id" description:""`
Path string `json:"path" orm:"path" description:""`
Filename string `json:"filename" orm:"filename" description:""`
SyncPath string `json:"syncPath" orm:"sync_path" description:""`
Duration int `json:"duration" orm:"duration" description:""`
Status int `json:"status" orm:"status" description:""`
Remark string `json:"remark" orm:"remark" description:""`
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:""`
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:""`
}
FileSyncTask is the golang structure for table file_sync_task.
Click to show internal directories.
Click to hide internal directories.