Documentation
¶
Overview ¶
Package po Code generated, DO NOT EDIT.
Package po Code generated, DO NOT EDIT.
Package po Code generated, DO NOT EDIT.
Index ¶
- type Account
- func (p Account) GetAccountDescription() string
- func (p Account) GetAccountID() string
- func (p Account) GetAccountIDs() []string
- func (p Account) GetAccountName() string
- func (p Account) GetAccountNames() []string
- func (p Account) GetAccountNickname() string
- func (p Account) GetCreatedAt() time.Time
- func (p Account) GetCreator() string
- func (p Account) GetDeletedAt() int64
- func (p Account) GetUpdatedAt() time.Time
- func (p Account) GetUpdater() string
- func (p Account) TableName() string
- type Accounts
- type Application
- func (p Application) GetApplicationDescription() string
- func (p Application) GetApplicationID() string
- func (p Application) GetApplicationIDs() []string
- func (p Application) GetApplicationName() string
- func (p Application) GetApplicationNames() []string
- func (p Application) GetApplicationNickname() string
- func (p Application) GetCreatedAt() time.Time
- func (p Application) GetCreator() string
- func (p Application) GetDeletedAt() int64
- func (p Application) GetUpdatedAt() time.Time
- func (p Application) GetUpdater() string
- func (p Application) TableName() string
- type Applications
- type EventBus
- func (p EventBus) GetCreatedAt() time.Time
- func (p EventBus) GetCreator() string
- func (p EventBus) GetDeletedAt() int64
- func (p EventBus) GetEventBusDescription() string
- func (p EventBus) GetEventBusID() string
- func (p EventBus) GetEventBusIDs() []string
- func (p EventBus) GetEventBusName() string
- func (p EventBus) GetEventBusNames() []string
- func (p EventBus) GetEventBusParams() string
- func (p EventBus) GetUpdatedAt() time.Time
- func (p EventBus) GetUpdater() string
- func (p EventBus) TableName() string
- type EventBuses
- type EventType
- func (p EventType) GetCreatedAt() time.Time
- func (p EventType) GetCreator() string
- func (p EventType) GetDeletedAt() int64
- func (p EventType) GetEventBusID() string
- func (p EventType) GetEventBusIDs() []string
- func (p EventType) GetEventTypeDescription() string
- func (p EventType) GetEventTypeID() string
- func (p EventType) GetEventTypeIDs() []string
- func (p EventType) GetEventTypeName() string
- func (p EventType) GetEventTypeNames() []string
- func (p EventType) GetEventTypeStatus() int
- func (p EventType) GetEventTypeStatuses() []int
- func (p EventType) GetOwnershipID() string
- func (p EventType) GetOwnershipIDs() []string
- func (p EventType) GetUpdatedAt() time.Time
- func (p EventType) GetUpdater() string
- func (p EventType) TableName() string
- type EventTypes
- type Passport
- func (p Passport) GetAccountID() string
- func (p Passport) GetAccountIDs() []string
- func (p Passport) GetCreatedAt() time.Time
- func (p Passport) GetCreator() string
- func (p Passport) GetDeletedAt() int64
- func (p Passport) GetPassportID() string
- func (p Passport) GetPassportIDs() []string
- func (p Passport) GetPassportNationality() string
- func (p Passport) GetPassportNationalitys() []string
- func (p Passport) GetPassportPostalAddress() string
- func (p Passport) GetUpdatedAt() time.Time
- func (p Passport) GetUpdater() string
- func (p Passport) TableName() string
- type Passports
- type Publication
- func (p Publication) GetCreatedAt() time.Time
- func (p Publication) GetCreator() string
- func (p Publication) GetDeletedAt() int64
- func (p Publication) GetEventTypeID() string
- func (p Publication) GetEventTypeIDs() []string
- func (p Publication) GetPublicationDescription() string
- func (p Publication) GetPublicationID() string
- func (p Publication) GetPublicationIDs() []string
- func (p Publication) GetPublicationStatus() int
- func (p Publication) GetPublicationStatuses() []int
- func (p Publication) GetPublisherID() string
- func (p Publication) GetPublisherIDs() []string
- func (p Publication) GetUpdatedAt() time.Time
- func (p Publication) GetUpdater() string
- func (p Publication) TableName() string
- type Publications
- type Secret
- func (p Secret) GetAccountID() string
- func (p Secret) GetCreatedAt() time.Time
- func (p Secret) GetCreator() string
- func (p Secret) GetDeletedAt() int64
- func (p Secret) GetSecretID() string
- func (p Secret) GetSecretIDs() []string
- func (p Secret) GetSecretSecret() string
- func (p Secret) GetUpdatedAt() time.Time
- func (p Secret) GetUpdater() string
- func (p Secret) TableName() string
- type Secrets
- type Subscription
- func (p Subscription) GetCreatedAt() time.Time
- func (p Subscription) GetCreator() string
- func (p Subscription) GetDeletedAt() int64
- func (p Subscription) GetEventTypeID() string
- func (p Subscription) GetEventTypeIDs() []string
- func (p Subscription) GetSubscriberID() string
- func (p Subscription) GetSubscriberIDs() []string
- func (p Subscription) GetSubscriptionDescription() string
- func (p Subscription) GetSubscriptionID() string
- func (p Subscription) GetSubscriptionIDs() []string
- func (p Subscription) GetSubscriptionStatus() int
- func (p Subscription) GetSubscriptionStatuses() []int
- func (p Subscription) GetUpdatedAt() time.Time
- func (p Subscription) GetUpdater() string
- func (p Subscription) TableName() string
- type Subscriptions
- type TechRelation
- func (p TechRelation) GetCreatedAt() time.Time
- func (p TechRelation) GetCreator() string
- func (p TechRelation) GetDeletedAt() int64
- func (p TechRelation) GetStudentID() string
- func (p TechRelation) GetTeacherID() string
- func (p TechRelation) GetTechRelationID() string
- func (p TechRelation) GetTechRelationIDs() []string
- func (p TechRelation) GetUpdatedAt() time.Time
- func (p TechRelation) GetUpdater() string
- func (p TechRelation) TableName() string
- type TechRelations
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 ¶
GetAccountDescription Account impl base.Description
func (Account) GetAccountID ¶
GetAccountID Account impl base.ID
func (Account) GetAccountIDs ¶
GetAccountIDs Account impl base.IDs
func (Account) GetAccountName ¶
GetAccountName Account impl base.Name
func (Account) GetAccountNames ¶
GetAccountNames Account impl base.Names
func (Account) GetAccountNickname ¶
GetAccountNickname Account impl base.Nickname
func (Account) GetCreatedAt ¶
GetCreatedAt Account impl base.CreatedAt
func (Account) GetCreator ¶
GetCreator Account impl base.Creator
func (Account) GetDeletedAt ¶
GetDeletedAt Account impl base.DeletedAt
func (Account) GetUpdatedAt ¶
GetUpdatedAt Account impl base.UpdatedAt
func (Account) GetUpdater ¶
GetUpdater Account impl base.Updater
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 ¶
GetCreatedAt EventBus impl base.CreatedAt
func (EventBus) GetCreator ¶
GetCreator EventBus impl base.Creator
func (EventBus) GetDeletedAt ¶
GetDeletedAt EventBus impl base.DeletedAt
func (EventBus) GetEventBusDescription ¶
GetEventBusDescription EventBus impl base.Description
func (EventBus) GetEventBusID ¶
GetEventBusID EventBus impl base.ID
func (EventBus) GetEventBusIDs ¶
GetEventBusIDs EventBus impl base.IDs
func (EventBus) GetEventBusName ¶
GetEventBusName EventBus impl base.Name
func (EventBus) GetEventBusNames ¶
GetEventBusNames EventBus impl base.Names
func (EventBus) GetEventBusParams ¶
GetEventBusParams EventBus impl base.Params
func (EventBus) GetUpdatedAt ¶
GetUpdatedAt EventBus impl base.UpdatedAt
func (EventBus) GetUpdater ¶
GetUpdater EventBus impl base.Updater
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 ¶
GetCreatedAt EventType impl base.CreatedAt
func (EventType) GetCreator ¶
GetCreator EventType impl base.Creator
func (EventType) GetDeletedAt ¶
GetDeletedAt EventType impl base.DeletedAt
func (EventType) GetEventBusID ¶
GetEventBusID EventType impl base.EventBusID
func (EventType) GetEventBusIDs ¶
GetEventBusIDs EventType impl base.EventBusIDs
func (EventType) GetEventTypeDescription ¶
GetEventTypeDescription EventType impl base.Description
func (EventType) GetEventTypeID ¶
GetEventTypeID EventType impl base.ID
func (EventType) GetEventTypeIDs ¶
GetEventTypeIDs EventType impl base.IDs
func (EventType) GetEventTypeName ¶
GetEventTypeName EventType impl base.Name
func (EventType) GetEventTypeNames ¶
GetEventTypeNames EventType impl base.Names
func (EventType) GetEventTypeStatus ¶
GetEventTypeStatus EventType impl base.Status
func (EventType) GetEventTypeStatuses ¶
GetEventTypeStatuses EventType impl base.Statuses
func (EventType) GetOwnershipID ¶
GetOwnershipID EventType impl base.MainAppID
func (EventType) GetOwnershipIDs ¶
GetOwnershipIDs EventType impl base.MainAppIDs
func (EventType) GetUpdatedAt ¶
GetUpdatedAt EventType impl base.UpdatedAt
func (EventType) GetUpdater ¶
GetUpdater EventType impl base.Updater
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 ¶
GetAccountID Passport impl base.AccountID
func (Passport) GetAccountIDs ¶
GetAccountIDs Passport impl base.AccountIDs
func (Passport) GetCreatedAt ¶
GetCreatedAt Passport impl base.CreatedAt
func (Passport) GetCreator ¶
GetCreator Passport impl base.Creator
func (Passport) GetDeletedAt ¶
GetDeletedAt Passport impl base.DeletedAt
func (Passport) GetPassportID ¶
GetPassportID Passport impl base.ID
func (Passport) GetPassportIDs ¶
GetPassportIDs Passport impl base.IDs
func (Passport) GetPassportNationality ¶
GetPassportNationality Passport impl base.Nationality
func (Passport) GetPassportNationalitys ¶
GetPassportNationalitys Passport impl base.Nationalitys
func (Passport) GetPassportPostalAddress ¶
GetPassportPostalAddress Passport impl base.PostalAddress
func (Passport) GetUpdatedAt ¶
GetUpdatedAt Passport impl base.UpdatedAt
func (Passport) GetUpdater ¶
GetUpdater Passport impl base.Updater
type Passports ¶
type Passports []Passport
func (Passports) GetAccountIDs ¶
func (Passports) GetPassportIDs ¶
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 ¶
GetAccountID Secret impl base.AccountID
func (Secret) GetCreatedAt ¶
GetCreatedAt Secret impl base.CreatedAt
func (Secret) GetDeletedAt ¶
GetDeletedAt Secret impl base.DeletedAt
func (Secret) GetSecretIDs ¶
GetSecretIDs Secret impl base.IDs
func (Secret) GetSecretSecret ¶
GetSecretSecret Secret impl base.Secret
func (Secret) GetUpdatedAt ¶
GetUpdatedAt Secret impl base.UpdatedAt
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