po

package
v0.0.0-...-a49857f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 14, 2022 License: GPL-3.0 Imports: 2 Imported by: 0

Documentation

Overview

Package po Code generated, DO NOT EDIT.

Package po Code generated, DO NOT EDIT.

Package po Code generated, DO NOT EDIT.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Account

type Account struct {
	CreatedAt   time.Time `gorm:"column:created_at;type:time;<-:create;autoCreateTime"`
	Creator     string    `gorm:"column:creator;type:varchar(255)"`
	DeletedAt   int64     `gorm:"column:deleted_at;default:0"`
	Description string    `gorm:"column:description;type:varchar(4096);default null"`
	ID          string    `gorm:"column:id;type:varchar(36);primaryKey;NOT NULL"`
	Name        string    `gorm:"column:name;type:varchar(255);NOT NULL;uniqueIndex:t_account_u1"`
	Nickname    string    `gorm:"column:nickname;type:varchar(255);"`
	UpdatedAt   time.Time `gorm:"column:updated_at;type:time;autoUpdateTime"`
	Updater     string    `gorm:"column:updater;type:varchar(255)"`
}

Account table name: t_account

func (Account) GetAccountDescription

func (p Account) GetAccountDescription() string

GetAccountDescription Account impl base.Description

func (Account) GetAccountID

func (p Account) GetAccountID() string

GetAccountID Account impl base.ID

func (Account) GetAccountIDs

func (p Account) GetAccountIDs() []string

GetAccountIDs Account impl base.IDs

func (Account) GetAccountName

func (p Account) GetAccountName() string

GetAccountName Account impl base.Name

func (Account) GetAccountNames

func (p Account) GetAccountNames() []string

GetAccountNames Account impl base.Names

func (Account) GetAccountNickname

func (p Account) GetAccountNickname() string

GetAccountNickname Account impl base.Nickname

func (Account) GetCreatedAt

func (p Account) GetCreatedAt() time.Time

GetCreatedAt Account impl base.CreatedAt

func (Account) GetCreator

func (p Account) GetCreator() string

GetCreator Account impl base.Creator

func (Account) GetDeletedAt

func (p Account) GetDeletedAt() int64

GetDeletedAt Account impl base.DeletedAt

func (Account) GetUpdatedAt

func (p Account) GetUpdatedAt() time.Time

GetUpdatedAt Account impl base.UpdatedAt

func (Account) GetUpdater

func (p Account) GetUpdater() string

GetUpdater Account impl base.Updater

func (Account) TableName

func (p Account) TableName() string

TableName Account impl schema.Tabler

type Accounts

type Accounts []Account

func (Accounts) GetAccountIDs

func (p Accounts) GetAccountIDs() []string

type Application

type Application struct {
	CreatedAt   time.Time `gorm:"column:created_at;type:time;<-:create;autoCreateTime"`
	Creator     string    `gorm:"column:creator;type:varchar(255)"`
	DeletedAt   int64     `gorm:"column:deleted_at;default:0"`
	Description string    `gorm:"column:description;type:varchar(4096);default null"`
	ID          string    `gorm:"column:id;type:varchar(36);primaryKey;NOT NULL"`
	Name        string    `gorm:"column:name;type:varchar(255);NOT NULL;uniqueIndex:t_application_u1"`
	Nickname    string    `gorm:"column:nickname;type:varchar(255);"`
	UpdatedAt   time.Time `gorm:"column:updated_at;type:time;autoUpdateTime"`
	Updater     string    `gorm:"column:updater;type:varchar(255)"`
}

Application table name: t_application

func (Application) GetApplicationDescription

func (p Application) GetApplicationDescription() string

GetApplicationDescription Application impl base.Description

func (Application) GetApplicationID

func (p Application) GetApplicationID() string

GetApplicationID Application impl base.ID

func (Application) GetApplicationIDs

func (p Application) GetApplicationIDs() []string

GetApplicationIDs Application impl base.IDs

func (Application) GetApplicationName

func (p Application) GetApplicationName() string

GetApplicationName Application impl base.Name

func (Application) GetApplicationNames

func (p Application) GetApplicationNames() []string

GetApplicationNames Application impl base.Names

func (Application) GetApplicationNickname

func (p Application) GetApplicationNickname() string

GetApplicationNickname Application impl base.Nickname

func (Application) GetCreatedAt

func (p Application) GetCreatedAt() time.Time

GetCreatedAt Application impl base.CreatedAt

func (Application) GetCreator

func (p Application) GetCreator() string

GetCreator Application impl base.Creator

func (Application) GetDeletedAt

func (p Application) GetDeletedAt() int64

GetDeletedAt Application impl base.DeletedAt

func (Application) GetUpdatedAt

func (p Application) GetUpdatedAt() time.Time

GetUpdatedAt Application impl base.UpdatedAt

func (Application) GetUpdater

func (p Application) GetUpdater() string

GetUpdater Application impl base.Updater

func (Application) TableName

func (p Application) TableName() string

TableName Application impl schema.Tabler

type Applications

type Applications []Application

func (Applications) GetApplicationIDs

func (p Applications) GetApplicationIDs() []string

type EventBus

type EventBus struct {
	CreatedAt   time.Time `gorm:"column:created_at;type:time;<-:create;autoCreateTime"`
	Creator     string    `gorm:"column:creator;type:varchar(255)"`
	DeletedAt   int64     `gorm:"column:deleted_at;default:0"`
	Description string    `gorm:"column:description;type:varchar(4096);default null"`
	ID          string    `gorm:"column:id;type:varchar(36);primaryKey;NOT NULL"`
	Name        string    `gorm:"column:name;type:varchar(255);NOT NULL;uniqueIndex:t_event_bus_u1"`
	Params      string    `gorm:"column:params;type:varchar(255)"`
	UpdatedAt   time.Time `gorm:"column:updated_at;type:time;autoUpdateTime"`
	Updater     string    `gorm:"column:updater;type:varchar(255)"`
}

EventBus table name: t_event_bus

func (EventBus) GetCreatedAt

func (p EventBus) GetCreatedAt() time.Time

GetCreatedAt EventBus impl base.CreatedAt

func (EventBus) GetCreator

func (p EventBus) GetCreator() string

GetCreator EventBus impl base.Creator

func (EventBus) GetDeletedAt

func (p EventBus) GetDeletedAt() int64

GetDeletedAt EventBus impl base.DeletedAt

func (EventBus) GetEventBusDescription

func (p EventBus) GetEventBusDescription() string

GetEventBusDescription EventBus impl base.Description

func (EventBus) GetEventBusID

func (p EventBus) GetEventBusID() string

GetEventBusID EventBus impl base.ID

func (EventBus) GetEventBusIDs

func (p EventBus) GetEventBusIDs() []string

GetEventBusIDs EventBus impl base.IDs

func (EventBus) GetEventBusName

func (p EventBus) GetEventBusName() string

GetEventBusName EventBus impl base.Name

func (EventBus) GetEventBusNames

func (p EventBus) GetEventBusNames() []string

GetEventBusNames EventBus impl base.Names

func (EventBus) GetEventBusParams

func (p EventBus) GetEventBusParams() string

GetEventBusParams EventBus impl base.Params

func (EventBus) GetUpdatedAt

func (p EventBus) GetUpdatedAt() time.Time

GetUpdatedAt EventBus impl base.UpdatedAt

func (EventBus) GetUpdater

func (p EventBus) GetUpdater() string

GetUpdater EventBus impl base.Updater

func (EventBus) TableName

func (p EventBus) TableName() string

TableName EventBus impl schema.Tabler

type EventBuses

type EventBuses []EventBus

func (EventBuses) GetEventBusIDs

func (p EventBuses) GetEventBusIDs() []string

type EventType

type EventType struct {
	CreatedAt   time.Time `gorm:"column:created_at;type:time;<-:create;autoCreateTime"`
	Creator     string    `gorm:"column:creator;type:varchar(255)"`
	DeletedAt   int64     `gorm:"column:deleted_at;default:0"`
	Description string    `gorm:"column:description;type:varchar(4096);default null"`
	EventBusID  string    `gorm:"column:event_bus_id;type:varchar(36);NOT NULL"`
	ID          string    `gorm:"column:id;type:varchar(36);primaryKey;NOT NULL"`
	MainAppID   string    `gorm:"column:main_app_id;type:varchar(36);NOT NULL"`
	Name        string    `gorm:"column:name;type:varchar(255);NOT NULL;uniqueIndex:t_event_type_u1"`
	Status      int       `gorm:"column:status;type:int;NOT NULL;default:0"`
	UpdatedAt   time.Time `gorm:"column:updated_at;type:time;autoUpdateTime"`
	Updater     string    `gorm:"column:updater;type:varchar(255)"`
}

EventType table name: t_event_type

func (EventType) GetCreatedAt

func (p EventType) GetCreatedAt() time.Time

GetCreatedAt EventType impl base.CreatedAt

func (EventType) GetCreator

func (p EventType) GetCreator() string

GetCreator EventType impl base.Creator

func (EventType) GetDeletedAt

func (p EventType) GetDeletedAt() int64

GetDeletedAt EventType impl base.DeletedAt

func (EventType) GetEventBusID

func (p EventType) GetEventBusID() string

GetEventBusID EventType impl base.EventBusID

func (EventType) GetEventBusIDs

func (p EventType) GetEventBusIDs() []string

GetEventBusIDs EventType impl base.EventBusIDs

func (EventType) GetEventTypeDescription

func (p EventType) GetEventTypeDescription() string

GetEventTypeDescription EventType impl base.Description

func (EventType) GetEventTypeID

func (p EventType) GetEventTypeID() string

GetEventTypeID EventType impl base.ID

func (EventType) GetEventTypeIDs

func (p EventType) GetEventTypeIDs() []string

GetEventTypeIDs EventType impl base.IDs

func (EventType) GetEventTypeName

func (p EventType) GetEventTypeName() string

GetEventTypeName EventType impl base.Name

func (EventType) GetEventTypeNames

func (p EventType) GetEventTypeNames() []string

GetEventTypeNames EventType impl base.Names

func (EventType) GetEventTypeStatus

func (p EventType) GetEventTypeStatus() int

GetEventTypeStatus EventType impl base.Status

func (EventType) GetEventTypeStatuses

func (p EventType) GetEventTypeStatuses() []int

GetEventTypeStatuses EventType impl base.Statuses

func (EventType) GetOwnershipID

func (p EventType) GetOwnershipID() string

GetOwnershipID EventType impl base.MainAppID

func (EventType) GetOwnershipIDs

func (p EventType) GetOwnershipIDs() []string

GetOwnershipIDs EventType impl base.MainAppIDs

func (EventType) GetUpdatedAt

func (p EventType) GetUpdatedAt() time.Time

GetUpdatedAt EventType impl base.UpdatedAt

func (EventType) GetUpdater

func (p EventType) GetUpdater() string

GetUpdater EventType impl base.Updater

func (EventType) TableName

func (p EventType) TableName() string

TableName EventType impl schema.Tabler

type EventTypes

type EventTypes []EventType

func (EventTypes) GetEventBusIDs

func (p EventTypes) GetEventBusIDs() []string

func (EventTypes) GetEventTypeIDs

func (p EventTypes) GetEventTypeIDs() []string

func (EventTypes) GetOwnershipIDs

func (p EventTypes) GetOwnershipIDs() []string

type Passport

type Passport struct {
	AccountID     string    `gorm:"column:account_id;type:varchar(255);"`
	CreatedAt     time.Time `gorm:"column:created_at;type:time;<-:create;autoCreateTime"`
	Creator       string    `gorm:"column:creator;type:varchar(255)"`
	DeletedAt     int64     `gorm:"column:deleted_at;default:0"`
	ID            string    `gorm:"column:id;type:varchar(36);primaryKey;NOT NULL"`
	Nationality   string    `gorm:"column:nationality;type:varchar(255)"`
	PostalAddress string    `gorm:"column:postal_address;type:varchar(1024)"`
	UpdatedAt     time.Time `gorm:"column:updated_at;type:time;autoUpdateTime"`
	Updater       string    `gorm:"column:updater;type:varchar(255)"`
}

Passport table name: t_passport

func (Passport) GetAccountID

func (p Passport) GetAccountID() string

GetAccountID Passport impl base.AccountID

func (Passport) GetAccountIDs

func (p Passport) GetAccountIDs() []string

GetAccountIDs Passport impl base.AccountIDs

func (Passport) GetCreatedAt

func (p Passport) GetCreatedAt() time.Time

GetCreatedAt Passport impl base.CreatedAt

func (Passport) GetCreator

func (p Passport) GetCreator() string

GetCreator Passport impl base.Creator

func (Passport) GetDeletedAt

func (p Passport) GetDeletedAt() int64

GetDeletedAt Passport impl base.DeletedAt

func (Passport) GetPassportID

func (p Passport) GetPassportID() string

GetPassportID Passport impl base.ID

func (Passport) GetPassportIDs

func (p Passport) GetPassportIDs() []string

GetPassportIDs Passport impl base.IDs

func (Passport) GetPassportNationality

func (p Passport) GetPassportNationality() string

GetPassportNationality Passport impl base.Nationality

func (Passport) GetPassportNationalitys

func (p Passport) GetPassportNationalitys() []string

GetPassportNationalitys Passport impl base.Nationalitys

func (Passport) GetPassportPostalAddress

func (p Passport) GetPassportPostalAddress() string

GetPassportPostalAddress Passport impl base.PostalAddress

func (Passport) GetUpdatedAt

func (p Passport) GetUpdatedAt() time.Time

GetUpdatedAt Passport impl base.UpdatedAt

func (Passport) GetUpdater

func (p Passport) GetUpdater() string

GetUpdater Passport impl base.Updater

func (Passport) TableName

func (p Passport) TableName() string

TableName Passport impl schema.Tabler

type Passports

type Passports []Passport

func (Passports) GetAccountIDs

func (p Passports) GetAccountIDs() []string

func (Passports) GetPassportIDs

func (p Passports) GetPassportIDs() []string

type Publication

type Publication struct {
	CreatedAt   time.Time `gorm:"column:created_at;type:time;<-:create;autoCreateTime"`
	Creator     string    `gorm:"column:creator;type:varchar(255)"`
	DeletedAt   int64     `gorm:"column:deleted_at;default:0"`
	Description string    `gorm:"column:description;type:varchar(4096);default null"`
	EventTypeID string    `gorm:"column:name;type:varchar(255);NOT NULL"`
	ID          string    `gorm:"column:id;type:varchar(36);primaryKey;NOT NULL"`
	PublisherID string    `gorm:"column:main_app_id;type:varchar(36);NOT NULL"`
	Status      int       `gorm:"column:status;type:int;NOT NULL;default:0"`
	UpdatedAt   time.Time `gorm:"column:updated_at;type:time;autoUpdateTime"`
	Updater     string    `gorm:"column:updater;type:varchar(255)"`
}

Publication table name: t_publication

func (Publication) GetCreatedAt

func (p Publication) GetCreatedAt() time.Time

GetCreatedAt Publication impl base.CreatedAt

func (Publication) GetCreator

func (p Publication) GetCreator() string

GetCreator Publication impl base.Creator

func (Publication) GetDeletedAt

func (p Publication) GetDeletedAt() int64

GetDeletedAt Publication impl base.DeletedAt

func (Publication) GetEventTypeID

func (p Publication) GetEventTypeID() string

GetEventTypeID Publication impl base.EventTypeID

func (Publication) GetEventTypeIDs

func (p Publication) GetEventTypeIDs() []string

GetEventTypeIDs Publication impl base.EventTypeIDs

func (Publication) GetPublicationDescription

func (p Publication) GetPublicationDescription() string

GetPublicationDescription Publication impl base.Description

func (Publication) GetPublicationID

func (p Publication) GetPublicationID() string

GetPublicationID Publication impl base.ID

func (Publication) GetPublicationIDs

func (p Publication) GetPublicationIDs() []string

GetPublicationIDs Publication impl base.IDs

func (Publication) GetPublicationStatus

func (p Publication) GetPublicationStatus() int

GetPublicationStatus Publication impl base.Status

func (Publication) GetPublicationStatuses

func (p Publication) GetPublicationStatuses() []int

GetPublicationStatuses Publication impl base.Statuses

func (Publication) GetPublisherID

func (p Publication) GetPublisherID() string

GetPublisherID Publication impl base.PublisherID

func (Publication) GetPublisherIDs

func (p Publication) GetPublisherIDs() []string

GetPublisherIDs Publication impl base.PublisherIDs

func (Publication) GetUpdatedAt

func (p Publication) GetUpdatedAt() time.Time

GetUpdatedAt Publication impl base.UpdatedAt

func (Publication) GetUpdater

func (p Publication) GetUpdater() string

GetUpdater Publication impl base.Updater

func (Publication) TableName

func (p Publication) TableName() string

TableName Publication impl schema.Tabler

type Publications

type Publications []Publication

func (Publications) GetEventTypeIDs

func (p Publications) GetEventTypeIDs() []string

func (Publications) GetPublicationIDs

func (p Publications) GetPublicationIDs() []string

func (Publications) GetPublisherIDs

func (p Publications) GetPublisherIDs() []string

type Secret

type Secret struct {
	AccountID string    `gorm:"column:account_id;type:varchar(255);"`
	CreatedAt time.Time `gorm:"column:created_at;type:time;<-:create;autoCreateTime"`
	Creator   string    `gorm:"column:creator;type:varchar(255)"`
	DeletedAt int64     `gorm:"column:deleted_at;default:0"`
	ID        string    `gorm:"column:id;type:varchar(36);primaryKey;NOT NULL"`
	Secret    string    `gorm:"column:secret;type:varchar(255);NOT NULL"`
	UpdatedAt time.Time `gorm:"column:updated_at;type:time;autoUpdateTime"`
	Updater   string    `gorm:"column:updater;type:varchar(255)"`
}

Secret table name: t_secret

func (Secret) GetAccountID

func (p Secret) GetAccountID() string

GetAccountID Secret impl base.AccountID

func (Secret) GetCreatedAt

func (p Secret) GetCreatedAt() time.Time

GetCreatedAt Secret impl base.CreatedAt

func (Secret) GetCreator

func (p Secret) GetCreator() string

GetCreator Secret impl base.Creator

func (Secret) GetDeletedAt

func (p Secret) GetDeletedAt() int64

GetDeletedAt Secret impl base.DeletedAt

func (Secret) GetSecretID

func (p Secret) GetSecretID() string

GetSecretID Secret impl base.ID

func (Secret) GetSecretIDs

func (p Secret) GetSecretIDs() []string

GetSecretIDs Secret impl base.IDs

func (Secret) GetSecretSecret

func (p Secret) GetSecretSecret() string

GetSecretSecret Secret impl base.Secret

func (Secret) GetUpdatedAt

func (p Secret) GetUpdatedAt() time.Time

GetUpdatedAt Secret impl base.UpdatedAt

func (Secret) GetUpdater

func (p Secret) GetUpdater() string

GetUpdater Secret impl base.Updater

func (Secret) TableName

func (p Secret) TableName() string

TableName Secret impl schema.Tabler

type Secrets

type Secrets []Secret

func (Secrets) GetAccountIDs

func (p Secrets) GetAccountIDs() []string

func (Secrets) GetSecretIDs

func (p Secrets) GetSecretIDs() []string

type Subscription

type Subscription struct {
	CreatedAt    time.Time `gorm:"column:created_at;type:time;<-:create;autoCreateTime"`
	Creator      string    `gorm:"column:creator;type:varchar(255)"`
	DeletedAt    int64     `gorm:"column:deleted_at;default:0"`
	Description  string    `gorm:"column:description;type:varchar(4096);default null"`
	EventTypeID  string    `gorm:"column:name;type:varchar(255);NOT NULL"`
	ID           string    `gorm:"column:id;type:varchar(36);primaryKey;NOT NULL"`
	Status       int       `gorm:"column:status;type:int;NOT NULL;default:0"`
	SubscriberID string    `gorm:"column:main_app_id;type:varchar(36);NOT NULL"`
	UpdatedAt    time.Time `gorm:"column:updated_at;type:time;autoUpdateTime"`
	Updater      string    `gorm:"column:updater;type:varchar(255)"`
}

Subscription table name: t_subscription

func (Subscription) GetCreatedAt

func (p Subscription) GetCreatedAt() time.Time

GetCreatedAt Subscription impl base.CreatedAt

func (Subscription) GetCreator

func (p Subscription) GetCreator() string

GetCreator Subscription impl base.Creator

func (Subscription) GetDeletedAt

func (p Subscription) GetDeletedAt() int64

GetDeletedAt Subscription impl base.DeletedAt

func (Subscription) GetEventTypeID

func (p Subscription) GetEventTypeID() string

GetEventTypeID Subscription impl base.EventTypeID

func (Subscription) GetEventTypeIDs

func (p Subscription) GetEventTypeIDs() []string

GetEventTypeIDs Subscription impl base.EventTypeIDs

func (Subscription) GetSubscriberID

func (p Subscription) GetSubscriberID() string

GetSubscriberID Subscription impl base.SubscriberID

func (Subscription) GetSubscriberIDs

func (p Subscription) GetSubscriberIDs() []string

GetSubscriberIDs Subscription impl base.SubscriberIDs

func (Subscription) GetSubscriptionDescription

func (p Subscription) GetSubscriptionDescription() string

GetSubscriptionDescription Subscription impl base.Description

func (Subscription) GetSubscriptionID

func (p Subscription) GetSubscriptionID() string

GetSubscriptionID Subscription impl base.ID

func (Subscription) GetSubscriptionIDs

func (p Subscription) GetSubscriptionIDs() []string

GetSubscriptionIDs Subscription impl base.IDs

func (Subscription) GetSubscriptionStatus

func (p Subscription) GetSubscriptionStatus() int

GetSubscriptionStatus Subscription impl base.Status

func (Subscription) GetSubscriptionStatuses

func (p Subscription) GetSubscriptionStatuses() []int

GetSubscriptionStatuses Subscription impl base.Statuses

func (Subscription) GetUpdatedAt

func (p Subscription) GetUpdatedAt() time.Time

GetUpdatedAt Subscription impl base.UpdatedAt

func (Subscription) GetUpdater

func (p Subscription) GetUpdater() string

GetUpdater Subscription impl base.Updater

func (Subscription) TableName

func (p Subscription) TableName() string

TableName Subscription impl schema.Tabler

type Subscriptions

type Subscriptions []Subscription

func (Subscriptions) GetEventTypeIDs

func (p Subscriptions) GetEventTypeIDs() []string

func (Subscriptions) GetSubscriberIDs

func (p Subscriptions) GetSubscriberIDs() []string

func (Subscriptions) GetSubscriptionIDs

func (p Subscriptions) GetSubscriptionIDs() []string

type TechRelation

type TechRelation struct {
	CreatedAt time.Time `gorm:"column:created_at;type:time;<-:create;autoCreateTime"`
	Creator   string    `gorm:"column:creator;type:varchar(255)"`
	DeletedAt int64     `gorm:"column:deleted_at;default:0"`
	ID        string    `gorm:"column:id;type:varchar(36)"`
	StudentID string    `gorm:"column:student_id;type:varchar(36)"`
	TeacherID string    `gorm:"column:teacher_id;type:varchar(36)"`
	UpdatedAt time.Time `gorm:"column:updated_at;type:time;autoUpdateTime"`
	Updater   string    `gorm:"column:updater;type:varchar(255)"`
}

TechRelation table name: t_tech_relation

func (TechRelation) GetCreatedAt

func (p TechRelation) GetCreatedAt() time.Time

GetCreatedAt TechRelation impl base.CreatedAt

func (TechRelation) GetCreator

func (p TechRelation) GetCreator() string

GetCreator TechRelation impl base.Creator

func (TechRelation) GetDeletedAt

func (p TechRelation) GetDeletedAt() int64

GetDeletedAt TechRelation impl base.DeletedAt

func (TechRelation) GetStudentID

func (p TechRelation) GetStudentID() string

GetStudentID TechRelation impl base.StudentID

func (TechRelation) GetTeacherID

func (p TechRelation) GetTeacherID() string

GetTeacherID TechRelation impl base.TeacherID

func (TechRelation) GetTechRelationID

func (p TechRelation) GetTechRelationID() string

GetTechRelationID TechRelation impl base.ID

func (TechRelation) GetTechRelationIDs

func (p TechRelation) GetTechRelationIDs() []string

GetTechRelationIDs TechRelation impl base.IDs

func (TechRelation) GetUpdatedAt

func (p TechRelation) GetUpdatedAt() time.Time

GetUpdatedAt TechRelation impl base.UpdatedAt

func (TechRelation) GetUpdater

func (p TechRelation) GetUpdater() string

GetUpdater TechRelation impl base.Updater

func (TechRelation) TableName

func (p TechRelation) TableName() string

TableName TechRelation impl schema.Tabler

type TechRelations

type TechRelations []TechRelation

func (TechRelations) GetStudentIDs

func (p TechRelations) GetStudentIDs() []string

func (TechRelations) GetTeacherIDs

func (p TechRelations) GetTeacherIDs() []string

func (TechRelations) GetTechRelationIDs

func (p TechRelations) GetTechRelationIDs() []string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL