migu_music_server/cmd/migrate/migration/models/tb_demo.go

13 lines
191 B
Go
Raw Normal View History

2025-03-28 06:07:20 +00:00
package models
type TbDemo struct {
Model
Name string `json:"name" gorm:"type:varchar(128);comment:名称"`
ModelTime
ControlBy
}
func (TbDemo) TableName() string {
return "tb_demo"
}