13 lines
356 B
Go
13 lines
356 B
Go
package authpartner
|
|
|
|
import (
|
|
ecore "simrs-vx/internal/domain/base-entities/core"
|
|
)
|
|
|
|
type AuthPartner struct {
|
|
ecore.SmallMain // adjust this according to the needs
|
|
Code string `json:"code" gorm:"unique;size:50"`
|
|
Name string `json:"name" gorm:"unique;size:100"`
|
|
SecretKey string `json:"secretKey" gorm:"size:255"`
|
|
}
|