123456789101112131415161718192021 |
- // 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 TableNameAdminSystem = "admin_system"
- // AdminSystem mapped from table <admin_system>
- type AdminSystem struct {
- ID int32 `gorm:"column:id;primaryKey;autoIncrement:true" json:"id"`
- Name string `gorm:"column:name;not null" json:"name"`
- URL string `gorm:"column:url;not null" json:"url"`
- CreateAt int32 `gorm:"column:create_at;not null" json:"create_at"`
- UpdateAt int32 `gorm:"column:update_at;not null" json:"update_at"`
- }
- // TableName AdminSystem's table name
- func (*AdminSystem) TableName() string {
- return TableNameAdminSystem
- }
|