|
@@ -15,6 +15,7 @@ type UpConfItem struct {
|
|
|
Dest string
|
|
|
}
|
|
|
|
|
|
+// 数据库versions集合对应字段
|
|
|
type AppVersion struct {
|
|
|
Id primitive.ObjectID `json:"id"`
|
|
|
Label string `json:"label"`
|
|
@@ -31,6 +32,7 @@ type AppVersion struct {
|
|
|
InstCount int `json:"instCount"`
|
|
|
}
|
|
|
|
|
|
+// db.json对应字段
|
|
|
type Version struct {
|
|
|
Label string `json:"label"`
|
|
|
Name string `json:"name"`
|
|
@@ -46,6 +48,7 @@ type Version struct {
|
|
|
InstCount int `json:"instCount"`
|
|
|
}
|
|
|
|
|
|
+// app.json对应字段
|
|
|
type App struct {
|
|
|
Name string `json:"name"`
|
|
|
Version string `json:"version"`
|
|
@@ -56,7 +59,7 @@ type App struct {
|
|
|
Tags string `json:"tags"`
|
|
|
Desc string `json:"desc"`
|
|
|
Entry string `json:"entry"`
|
|
|
- AppType string `json:"appType"`
|
|
|
+ Type string `json:"type"`
|
|
|
Key string `json:"key"`
|
|
|
InstCount int `json:"instCount"`
|
|
|
}
|