服务之间相互调用

This commit is contained in:
2026-08-24 10:06:52 +08:00
parent c33fbdb422
commit 80f428c032
49 changed files with 1756 additions and 35 deletions
+10
View File
@@ -0,0 +1,10 @@
package dao
type Cart struct {
Id int64 `json:"id" gorm:"id"`
Content string `json:"content" gorm:"content"` // 内容
StoreId int64 `json:"store_id" gorm:"store_id"` // 门店ID
SaleId int64 `json:"sale_id" gorm:"sale_id"` // 销售ID
Type bool `json:"type" gorm:"type"` // 类型,1为门店添加,2为销售添加
UserId int64 `json:"user_id" gorm:"user_id"` // 用户ID
}