Files
APIPark/module/system-apikey/dto/input.go
2025-04-07 11:50:14 +08:00

15 lines
293 B
Go

package system_apikey_dto
type Create struct {
Id string `json:"id"`
Name string `json:"name"`
Value string `json:"value"`
Expired int64 `json:"expired"`
}
type Update struct {
Name *string `json:"name"`
Value *string `json:"value"`
Expired *int64 `json:"expired"`
}