20 lines
601 B
Go
20 lines
601 B
Go
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
|
|
package models
|
|
|
|
const TableNameCertMastery = "certMasteries"
|
|
|
|
// CertMastery mapped from table <certMasteries>
|
|
type CertMastery struct {
|
|
TypeID int32 `gorm:"column:typeID;type:INTEGER" json:"typeID"`
|
|
MasteryLevel int32 `gorm:"column:masteryLevel;type:INTEGER" json:"masteryLevel"`
|
|
CertID int32 `gorm:"column:certID" json:"certID"`
|
|
}
|
|
|
|
// TableName CertMastery's table name
|
|
func (*CertMastery) TableName() string {
|
|
return TableNameCertMastery
|
|
}
|