feat: sale manager
This commit is contained in:
@@ -5,21 +5,30 @@ import (
|
||||
"lone-services/services/chore/internal/config"
|
||||
|
||||
"github.com/zeromicro/go-zero/core/logx"
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
type ServiceContext struct {
|
||||
Config config.Config
|
||||
DB *gorm.DB
|
||||
ProductSvcName string
|
||||
SaleSvcName string
|
||||
}
|
||||
|
||||
func NewServiceContext(c config.Config) *ServiceContext {
|
||||
func NewServiceContext(c config.Config, db *gorm.DB) *ServiceContext {
|
||||
productSvc := utils.GetConfigString("services.product")
|
||||
if productSvc == utils.StringEmpty {
|
||||
logx.Error("config services.product empty")
|
||||
}
|
||||
saleSvc := utils.GetConfigString("services.sale")
|
||||
if saleSvc == utils.StringEmpty {
|
||||
logx.Error("config services.sale empty")
|
||||
}
|
||||
|
||||
return &ServiceContext{
|
||||
Config: c,
|
||||
DB: db,
|
||||
ProductSvcName: productSvc,
|
||||
SaleSvcName: saleSvc,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user