liwei 2 years ago
parent
commit
b927921449
1 changed files with 8 additions and 7 deletions
  1. 8 7
      3dshow-customer/db/repo/repo.go

+ 8 - 7
3dshow-customer/db/repo/repo.go

@@ -18,13 +18,14 @@ type RepoSession struct {
 }
 
 const (
-	CollectionSupply   = "supply"
-	CollectionCollect  = "collect"
-	CollectionProduct  = "product"
-	CollectionAddress  = "address"
-	CollectionOrder    = "order"
-	CollectionShopCart = "shopCart"
-	CollectionAssets   = "assets"
+	CollectionSupply     = "supply"
+	CollectionCollect    = "collect"
+	CollectionProduct    = "product"
+	CollectionAddress    = "address"
+	CollectionOrder      = "order"
+	CollectionShopCart   = "shopCart"
+	CollectionAssets     = "assets"
+	CollectionUserSupply = "user_supply"
 )
 
 type Map map[string]interface{}