瀏覽代碼

add model

animeic 2 年之前
父節點
當前提交
b7a82f6f68

+ 0 - 93
3dshow/api/craft.go

@@ -1,93 +0,0 @@
-package api
-
-// 工艺管理
-func Craft(r *GinRouter) {
-
-	CreateCRUD(r, "/3dshow", &CRUDOption{
-		Collection: "3dshow",
-	})
-}
-
-// // 创建工艺
-// func CreateCraft(c *gin.Context, apictx *ApiSession) (interface{}, error) {
-
-// 	var craft model.Craft
-
-// 	err := c.ShouldBindJSON(&craft)
-// 	if err != nil {
-// 		fmt.Println(err)
-// 		return nil, errors.New("参数错误!")
-// 	}
-// 	ctx := apictx.CreateRepoCtx()
-
-// 	if craft.Name == "" {
-// 		return nil, errors.New("工艺名为空")
-// 	}
-
-// 	craft.CreateTime = time.Now()
-// 	craft.UpdateTime = time.Now()
-
-// 	result, err := repo.RepoAddDoc(ctx, repo.CollectionCraft, &craft)
-// 	return result, err
-// }
-
-// // 获取工艺信息
-// func GetCraft(c *gin.Context, apictx *ApiSession) (interface{}, error) {
-// 	craftId := c.Param("id")
-// 	id, err := primitive.ObjectIDFromHex(craftId)
-// 	if err != nil {
-// 		return nil, errors.New("非法id")
-// 	}
-// 	var craft model.Craft
-// 	option := &repo.DocSearchOptions{
-// 		CollectName: repo.CollectionCraft,
-// 		Query:       repo.Map{"_id": id},
-// 	}
-
-// 	found, err := repo.RepoSeachDoc(apictx.CreateRepoCtx(), option, &craft)
-// 	if !found || err != nil {
-// 		log.Info(err)
-// 		return nil, errors.New("数据未找到")
-// 	}
-
-// 	return craft, nil
-// }
-
-// // 获取工艺列表
-// func GetCrafts(c *gin.Context, apictx *ApiSession) (interface{}, error) {
-
-// 	page, size, query := UtilQueryPageSize(c)
-
-// 	option := &repo.PageSearchOptions{
-// 		CollectName: repo.CollectionCraft,
-// 		Query:       query,
-// 		Page:        page,
-// 		Size:        size,
-// 		Sort:        bson.M{"createTime": -1},
-// 	}
-// 	return repo.RepoPageSearch(apictx.CreateRepoCtx(), option)
-// }
-
-// // 更新工艺
-// func UpdateCraft(c *gin.Context, apictx *ApiSession) (interface{}, error) {
-// 	var craft model.Craft
-// 	err := c.ShouldBindJSON(&craft)
-// 	if err != nil {
-// 		return nil, errors.New("参数错误")
-// 	}
-// 	if craft.Id.Hex() == "" {
-// 		return nil, errors.New("id的为空")
-// 	}
-// 	craft.UpdateTime = time.Now()
-// 	return repo.RepoUpdateSetDoc(apictx.CreateRepoCtx(), repo.CollectionCraft, craft.Id.Hex(), &craft)
-// }
-
-// // 删除工艺
-// func DelCraft(c *gin.Context, apictx *ApiSession) (interface{}, error) {
-// 	craftId := c.Param("id")
-// 	if craftId == "" {
-// 		return nil, errors.New("id为空")
-// 	}
-
-// 	return repo.RepoDeleteDoc(apictx.CreateRepoCtx(), repo.CollectionCraft, craftId)
-// }

+ 2 - 2
3dshow/api/router.go

@@ -13,8 +13,8 @@ func RegRouters(svc *Service) {
 	_3dshow.group.Use(Logger())
 	_3dshow.GET("/printr", Printr)
 
-	// 工艺管理
-	Craft(_3dshow)
+	// 供应链管理
+	Supply(_3dshow)
 
 }
 

+ 26 - 0
3dshow/api/supply.go

@@ -0,0 +1,26 @@
+package api
+
+import (
+	"3dshow/db/model"
+	"time"
+
+	"github.com/gin-gonic/gin"
+)
+
+func Supply(r *GinRouter) {
+
+	CreateCRUD(r, "/supply", &CRUDOption{
+		Collection: "supply",
+		NewModel: func(c *gin.Context, apictx *ApiSession) (interface{}, error) {
+			entity := &model.Supply{}
+			c.ShouldBindJSON(entity)
+			entity.CreateTime = time.Now()
+			return entity, nil
+		},
+		EmtyModel: func(c *gin.Context, apictx *ApiSession) interface{} {
+			return &model.Supply{}
+		},
+		JWT:           true,
+		SearchProject: []string{"name", "createTime"},
+	})
+}

+ 20 - 0
3dshow/db/model/address.go

@@ -0,0 +1,20 @@
+package model
+
+import (
+	"time"
+
+	"go.mongodb.org/mongo-driver/bson/primitive"
+)
+
+// 订单管理
+type Address struct {
+	Id         primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
+	UserId     primitive.ObjectID `bson:"userId,omitempty" json:"userId"`
+	Area       string             `bson:"area,omitempty" json:"area"`       // 区域
+	Addr       string             `bson:"addr,omitempty" json:"addr"`       // 详细地址
+	Contact    string             `bson:"contact,omitempty" json:"contact"` // 联系人
+	Phone      string             `bson:"phone,omitempty" json:"phone"`     // 联系人电话
+	Defualt    uint8              `bson:"defualt,omitempty" json:"defualt"` // 是否默认 0:否 1:是
+	CreateTime time.Time          `bson:"createTime,omitempty" json:"createTime"`
+	UpdateTime time.Time          `bson:"updateTime,omitempty" json:"updateTime"`
+}

+ 16 - 0
3dshow/db/model/collect.go

@@ -0,0 +1,16 @@
+package model
+
+import (
+	"time"
+
+	"go.mongodb.org/mongo-driver/bson/primitive"
+)
+
+// 收藏
+type Collect struct {
+	Id         primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
+	UserId     primitive.ObjectID `bson:"userId,omitempty" json:"userId"`
+	ProductId  primitive.ObjectID `bson:"productId,omitempty" json:"productId"`
+	CreateTime time.Time          `bson:"createTime,omitempty" json:"createTime"`
+	UpdateTime time.Time          `bson:"updateTime,omitempty" json:"updateTime"`
+}

+ 0 - 22
3dshow/db/model/craft.go

@@ -1,22 +0,0 @@
-package model
-
-import (
-	"time"
-
-	"go.mongodb.org/mongo-driver/bson/primitive"
-)
-
-// 工艺
-type Craft struct {
-	Id   primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
-	Name string             `bson:"name,omitempty" json:"name"`
-	// 单位
-	Unit  string  `bson:"unit,omitempty" json:"unit"`
-	Price float64 `bson:"price,omitempty" json:"price"`
-	// 质量要求
-	Quality string `bson:"quality,omitempty" json:"quality"`
-	// 备注
-	Remark     string    `bson:"remark,omitempty" json:"remark"`
-	CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
-	UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
-}

+ 29 - 0
3dshow/db/model/order.go

@@ -0,0 +1,29 @@
+package model
+
+import (
+	"time"
+
+	"go.mongodb.org/mongo-driver/bson/primitive"
+)
+
+// 订单管理
+type Order struct {
+	Id             primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
+	UserId         primitive.ObjectID `bson:"userId,omitempty" json:"userId"`
+	Address        *Address           `bson:"address,omitempty" json:"address"`
+	Product        *OrderProduct      `bson:"product,omitempty" json:"product"`
+	DeliveryMethod string             `bson:"deliveryMethod,omitempty" json:"deliveryMethod"`
+	Remark         string             `bson:"remark,omitempty" json:"remark"`
+	ExpressNo      string             `bson:"expressNo,omitempty" json:"expressNo"` // 快递单号,商家发货时需要输入
+	Status         int                `bson:"status,omitempty" json:"status"`       // 0:代发货 1:已发货
+	CreateTime     time.Time          `bson:"createTime,omitempty" json:"createTime"`
+	UpdateTime     time.Time          `bson:"updateTime,omitempty" json:"updateTime"`
+}
+
+type OrderProduct struct {
+	Id    primitive.ObjectID `bson:"id,omitempty" json:"id"`
+	Size  int                `bson:"size,omitempty" json:"size"`   // 下单选定的尺寸
+	Color string             `bson:"color,omitempty" json:"color"` // 下单选定的颜色
+	Unit  string             `bson:"unit,omitempty" json:"unit"`   // 型号
+	Cover string             `bson:"cover,omitempty" json:"cover"` // 封面图
+}

+ 26 - 0
3dshow/db/model/product.go

@@ -0,0 +1,26 @@
+package model
+
+import (
+	"time"
+
+	"go.mongodb.org/mongo-driver/bson/primitive"
+)
+
+// 产品
+type Product struct {
+	Id         primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
+	SupplyId   primitive.ObjectID `bson:"supplyId,omitempty" json:"supplyId"`
+	SenceId    primitive.ObjectID `bson:"senceId,omitempty" json:"senceId"` // 场景id,3d展示
+	Name       string             `bson:"name,omitempty" json:"name"`
+	Type       string             `bson:"type,omitempty" json:"type"` // 类型
+	Unit       string             `bson:"unit,omitempty" json:"unit"` // 型号
+	Price      float64            `bson:"price,omitempty" json:"price"`
+	Cover      string             `bson:"cover,omitempty" json:"cover"` // 封面图
+	Color      []string           `bson:"color,omitempty" json:"color"`
+	Size       []int              `bson:"size,omitempty" json:"size"`                 // 尺寸
+	Thumbnail  []string           `bson:"thumbnail,omitempty" json:"thumbnail"`       // 缩略图集合
+	Status     int                `bson:"status,omitempty" json:"status"`             // 0:下架 1:上架
+	OnsaleTime time.Time          `bson:"onsaleTime,omitempty" json:"onsaleTimeTime"` // 上架时间
+	CreateTime time.Time          `bson:"createTime,omitempty" json:"createTime"`
+	UpdateTime time.Time          `bson:"updateTime,omitempty" json:"updateTime"`
+}

+ 15 - 0
3dshow/db/model/supply.go

@@ -0,0 +1,15 @@
+package model
+
+import (
+	"time"
+
+	"go.mongodb.org/mongo-driver/bson/primitive"
+)
+
+// 供应链
+type Supply struct {
+	Id         primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
+	Name       string             `bson:"name,omitempty" json:"name"`
+	CreateTime time.Time          `bson:"createTime,omitempty" json:"createTime"`
+	UpdateTime time.Time          `bson:"updateTime,omitempty" json:"updateTime"`
+}