finsh mcp api

This commit is contained in:
Liujian
2025-04-07 11:50:14 +08:00
parent 0bc89cda8c
commit da05525cbb
102 changed files with 2574 additions and 60 deletions
+1
View File
@@ -24,6 +24,7 @@ type Service struct {
ApprovalType int `gorm:"type:tinyint(4);not null;column:approval_type;comment:审核类型"`
AsServer bool `gorm:"type:tinyint(1);not null;column:as_server;comment:是否为服务端项目"`
AsApp bool `gorm:"type:tinyint(1);not null;column:as_app;comment:是否为应用项目"`
EnableMCP bool `gorm:"type:tinyint(1);not null;column:enable_mcp;comment:是否启用MCP"`
}
func (p *Service) IdValue() int64 {
+22
View File
@@ -0,0 +1,22 @@
package system
import "time"
type APIKey struct {
Id int64 `gorm:"column:id;type:BIGINT(20);AUTO_INCREMENT;NOT NULL;comment:id;primary_key;comment:主键ID;"`
UUID string `gorm:"type:varchar(36);not null;column:uuid;uniqueIndex:uuid;comment:UUID;"`
Name string `gorm:"type:varchar(100);not null;column:name;comment:name"`
Value string `gorm:"type:text;not null;column:value;comment:value;"`
Expired int64 `gorm:"type:int(11);not null;column:expired;comment:过期时间"` // 过期时间
Creator string `gorm:"size:36;not null;column:creator;comment:创建人id" aovalue:"creator"` // 创建人id
Updater string `gorm:"size:36;not null;column:updater;comment:修改人id" aovalue:"updater"` // 修改人id
CreateAt time.Time `gorm:"type:timestamp;NOT NULL;DEFAULT:CURRENT_TIMESTAMP;column:create_at;comment:创建时间"`
UpdateAt time.Time `gorm:"type:timestamp;NOT NULL;DEFAULT:CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP;column:update_at;comment:修改时间"`
}
func (a *APIKey) IdValue() int64 {
return a.Id
}
func (a *APIKey) TableName() string {
return "system_apikey"
}
+22
View File
@@ -0,0 +1,22 @@
package system
import (
"reflect"
"github.com/eolinker/go-common/autowire"
"github.com/eolinker/go-common/store"
)
type IAPIKeyStore interface {
store.ISearchStore[APIKey]
}
type imlAPIKeyStore struct {
store.SearchStore[APIKey]
}
func init() {
autowire.Auto[IAPIKeyStore](func() reflect.Value {
return reflect.ValueOf(new(imlAPIKeyStore))
})
}