我注意到在 ORM 库 Gorm 中,您可以使用如下结构定义自定义表名:
type DeviceStatus struct {
// Define some Gorm model fields here
}
// TableName custumizes DeviceStatus SQL table name
func (DeviceStatus) TableName() string {
return "CustomDeviceStatusTableName"
}
这个结构叫什么?我试图用谷歌找到这个并弄清楚如何进行函数调用。
噜噜哒
catspeake
相关分类