22 lines
797 B
Go
22 lines
797 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 TableNameRAMActivity = "ramActivities"
|
|
|
|
// RAMActivity mapped from table <ramActivities>
|
|
type RAMActivity struct {
|
|
ActivityID int32 `gorm:"column:activityID;type:INTEGER" json:"activityID"`
|
|
ActivityName string `gorm:"column:activityName;type:VARCHAR(100)" json:"activityName"`
|
|
IconNo string `gorm:"column:iconNo;type:VARCHAR(5)" json:"iconNo"`
|
|
Description string `gorm:"column:description;type:VARCHAR(1000)" json:"description"`
|
|
Published bool `gorm:"column:published;type:BOOLEAN" json:"published"`
|
|
}
|
|
|
|
// TableName RAMActivity's table name
|
|
func (*RAMActivity) TableName() string {
|
|
return TableNameRAMActivity
|
|
}
|