2024-10-25 10:17:27 +00:00
|
|
|
package svc
|
|
|
|
|
2024-10-25 16:42:58 +00:00
|
|
|
import (
|
|
|
|
"app-cloudep-trade-service/internal/config"
|
|
|
|
model "app-cloudep-trade-service/internal/model/mongo"
|
|
|
|
|
|
|
|
ers "code.30cm.net/digimon/library-go/errs"
|
|
|
|
"code.30cm.net/digimon/library-go/errs/code"
|
|
|
|
vi "code.30cm.net/digimon/library-go/validator"
|
|
|
|
)
|
2024-10-25 10:17:27 +00:00
|
|
|
|
|
|
|
type ServiceContext struct {
|
2024-10-25 16:42:58 +00:00
|
|
|
Config config.Config
|
|
|
|
Validate vi.Validate
|
|
|
|
OrderModel model.OrderModel
|
2024-10-25 10:17:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewServiceContext(c config.Config) *ServiceContext {
|
2024-10-25 16:42:58 +00:00
|
|
|
// TODO 改成 Trade
|
|
|
|
ers.Scope = code.CloudEPOrder
|
|
|
|
|
2024-10-25 10:17:27 +00:00
|
|
|
return &ServiceContext{
|
|
|
|
Config: c,
|
2024-10-25 16:42:58 +00:00
|
|
|
Validate: vi.MustValidator(
|
|
|
|
WithDecimalGt(),
|
|
|
|
WithDecimalGte(),
|
|
|
|
),
|
|
|
|
OrderModel: MustOrderModel(c),
|
2024-10-25 10:17:27 +00:00
|
|
|
}
|
|
|
|
}
|