!65 创建编写ReportCommon类型

Merge pull request !65 from a-alpha/alpha-dev
This commit is contained in:
a-alpha 2022-11-08 08:35:43 +00:00 committed by Gitee
commit e021b1a35e
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 49 additions and 1 deletions

View File

@ -28,9 +28,26 @@
package genmai
type Singleton interace {
import (
"sync"
)
type Singleton interface {
}
type doctor struct {
}
var (
instance *doctor
once sync.Once
)
func DoctorIns() Singleton {
once.Do( func() {
instance = &doctor{}
})
return instance
}

View File

@ -0,0 +1,31 @@
////////////////////////////////////////////////////////////////
//
// Filename: ReportCommon.go
//
// Version: 1.0
// Created: 2022年11月08日 16时32分58秒
// Revision: none
// Compiler: go
//
// Author: alpha
// Organization: alpha
// Contacts: chenxinquan@kylinos.com
//
////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////
// Description:
////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////
// Log:
////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////
// Todo:
//
////////////////////////////////////////////////////////////////
package genmai
type ReportCommon map[string]interface {}