6b5e4c7cc3
【半实物信息解析BUG】
20 lines
746 B
Go
20 lines
746 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 model
|
|
|
|
const TableNameProjectTrainSize = "project_train_size"
|
|
|
|
// ProjectTrainSize mapped from table <project_train_size>
|
|
type ProjectTrainSize struct {
|
|
ID int32 `gorm:"column:id;primaryKey;autoIncrement:true;comment:主键" json:"id"` // 主键
|
|
Pid int32 `gorm:"column:pid;comment:项目主键" json:"pid"` // 项目主键
|
|
Sid int32 `gorm:"column:sid;comment:列车尺寸主键" json:"sid"` // 列车尺寸主键
|
|
}
|
|
|
|
// TableName ProjectTrainSize's table name
|
|
func (*ProjectTrainSize) TableName() string {
|
|
return TableNameProjectTrainSize
|
|
}
|