mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-12 15:39:09 +08:00
31 lines
781 B
Go
31 lines
781 B
Go
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 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"`
|
|
}
|