20 lines
598 B
Go
20 lines
598 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 TableNamePsRiskLang = "ps_risk_lang"
|
|
|
|
// PsRiskLang mapped from table <ps_risk_lang>
|
|
type PsRiskLang struct {
|
|
IDRisk int32 `gorm:"column:id_risk;primaryKey;index:id_risk,priority:1" json:"id_risk"`
|
|
IDLang int32 `gorm:"column:id_lang;primaryKey" json:"id_lang"`
|
|
Name string `gorm:"column:name;not null" json:"name"`
|
|
}
|
|
|
|
// TableName PsRiskLang's table name
|
|
func (*PsRiskLang) TableName() string {
|
|
return TableNamePsRiskLang
|
|
}
|