13 lines
239 B
Go
13 lines
239 B
Go
package db
|
|
|
|
type Product struct {
|
|
Id int `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Image string `json:"image"`
|
|
}
|
|
|
|
func (m *Product) TableName() string {
|
|
return "products"
|
|
}
|