animeic-cd 1 жил өмнө
parent
commit
4c24aaef47
1 өөрчлөгдсөн 4 нэмэгдсэн , 1 устгасан
  1. 4 1
      utils/utils.go

+ 4 - 1
utils/utils.go

@@ -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"`
 }