mc-client-updater-server/pkg/dao/entity/instance.go

12 lines
298 B
Go
Raw Normal View History

2022-10-04 00:36:01 +08:00
package entity
import (
"gorm.io/gorm"
)
type Instance struct {
gorm.Model `json:"model"`
Name string `gorm:"unique;not null" json:"name,omitempty"`
UpdateURL string `gorm:"column:update_url;not null;default:'';comment:更新URL未指定使用默认" json:"update_url,omitempty"`
}