50 lines
1.3 KiB
Go
50 lines
1.3 KiB
Go
package appmodel
|
||
|
||
import (
|
||
"github.com/qit-team/snow-core/db"
|
||
"sync"
|
||
"time"
|
||
)
|
||
|
||
var (
|
||
once sync.Once
|
||
m *AppModel
|
||
)
|
||
|
||
// 实体
|
||
type App struct {
|
||
Id int64
|
||
MerchantId int64 `xorm:"'merchant_id' bigint(20)"`
|
||
AppName string `xorm:"'app_name' varchar(20)"`
|
||
AppRemark string `xorm:"'app_remark' varchar(200)"`
|
||
Status int `xorm:"'status' TINYINT"`
|
||
KeyType int `xorm:"'key_type' TINYINT"`
|
||
PublicKey string `xorm:"'public_key' varchar(1024)"`
|
||
PrivateKey string `xorm:"'private_key' TEXT"`
|
||
MerchantPublicKey string `xorm:"'merchant_public_key' varchar(1024)"`
|
||
CreateTime time.Time `xorm:"'create_time' datetime created"`
|
||
UpdateTime time.Time `xorm:"'update_time' timestamp updated"`
|
||
DeleteTime time.Time `xorm:"'delete_time' timestamp deleted"`
|
||
NotifyUrl string `xorm:"'notify_url' varchar(128)"`
|
||
WhiteIp string `xorm:"'white_ip' varchar(255)"`
|
||
}
|
||
|
||
// 表名
|
||
func (m *App) TableName() string {
|
||
return "app"
|
||
}
|
||
|
||
// 私有化,防止被外部new
|
||
type AppModel struct {
|
||
db.Model //组合基础Model,集成基础Model的属性和方法
|
||
}
|
||
|
||
// 单例模式
|
||
func GetInstance() *AppModel {
|
||
once.Do(func() {
|
||
m = new(AppModel)
|
||
//m.DiName = "" //设置数据库实例连接,默认db.SingletonMain
|
||
})
|
||
return m
|
||
}
|