17 lines
471 B
Go
17 lines
471 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
// BindingInfo 绑定信息
|
|
type BindingInfo struct {
|
|
ID uint `json:"id"`
|
|
PresetID uint `json:"presetId"`
|
|
PresetName string `json:"presetName"`
|
|
ProviderID uint `json:"providerId"`
|
|
ProviderName string `json:"providerName"`
|
|
Priority int `json:"priority"`
|
|
IsActive bool `json:"isActive"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|