feat: import services and standardize Go 1.26.5

This commit is contained in:
2026-08-09 10:43:45 +08:00
parent 689c74b28f
commit 86024fa81d
1456 changed files with 220765 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
package models
import "git.apinb.com/bsm-sdk/core/types"
// RelationMatch records a recommended relationship between two identities.
type RelationMatch struct {
types.Std_IICUDS
RelationIdentity string `gorm:"column:relation_identity;type:varchar(36);not null;" json:"relation_identity"`
RecommendIdentity string `gorm:"column:recommend_identity;type:varchar(255);not null;" json:"recommend_identity"`
}
// TableName returns the backing relation table.
func (*RelationMatch) TableName() string {
return "relation_match"
}