12345678910111213141516171819202122232425262728 |
- package service
- import "git.sxidc.com/go-framework/baize/framework/core/application"
- const (
- dbSchema = "test"
- )
- type Service interface {
- Init(appInstance *application.App) error
- Destroy() error
- }
- var RegisteredServices = []Service{
- versionService,
- configurationService,
- sqlExecutorService,
- operateLogService,
- queryRuleService,
- classService,
- studentService,
- identityService,
- familyService,
- classAndStudentService,
- studentAndFamilyService,
- studentAndIdentityService,
- studentAndHobbyService,
- }
|