mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
989 B
44 lines
989 B
package dto
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type FtpInfo struct {
|
|
ID uint `json:"id"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
|
|
User string `json:"user"`
|
|
Password string `json:"password"`
|
|
Path string `json:"path"`
|
|
Status string `json:"status"`
|
|
Description string `json:"description"`
|
|
}
|
|
|
|
type FtpBaseInfo struct {
|
|
IsActive bool `json:"isActive"`
|
|
IsExist bool `json:"isExist"`
|
|
}
|
|
|
|
type FtpLogSearch struct {
|
|
PageInfo
|
|
User string `json:"user"`
|
|
Operation string `json:"operation"`
|
|
}
|
|
|
|
type FtpCreate struct {
|
|
User string `json:"user" validate:"required"`
|
|
Password string `json:"password" validate:"required"`
|
|
Path string `json:"path" validate:"required"`
|
|
Description string `json:"description"`
|
|
}
|
|
|
|
type FtpUpdate struct {
|
|
ID uint `json:"id"`
|
|
|
|
Password string `json:"password" validate:"required"`
|
|
Path string `json:"path" validate:"required"`
|
|
Status string `json:"status"`
|
|
Description string `json:"description"`
|
|
}
|