mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
13 lines
314 B
Go
13 lines
314 B
Go
package vo
|
|
|
|
import "time"
|
|
|
|
type DbTransferFileListVO struct {
|
|
Id *int64 `json:"id"`
|
|
CreateTime *time.Time `json:"createTime"`
|
|
Status int8 `json:"status"`
|
|
FileDbType string `json:"fileDbType"`
|
|
FileKey string `json:"fileKey"`
|
|
LogId uint64 `json:"logId"` // 日志ID
|
|
}
|