20 lines
626 B
Go
20 lines
626 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 prestadb
|
|
|
|
const TableNamePsGenderLang = "ps_gender_lang"
|
|
|
|
// PsGenderLang mapped from table <ps_gender_lang>
|
|
type PsGenderLang struct {
|
|
IDGender int32 `gorm:"column:id_gender;primaryKey;index:id_gender,priority:1" json:"id_gender"`
|
|
IDLang int32 `gorm:"column:id_lang;primaryKey" json:"id_lang"`
|
|
Name string `gorm:"column:name;not null" json:"name"`
|
|
}
|
|
|
|
// TableName PsGenderLang's table name
|
|
func (*PsGenderLang) TableName() string {
|
|
return TableNamePsGenderLang
|
|
}
|