This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
|
package models
|
|
|
|
import "github.com/genofire/hs_master-kss-monolith/lib/database"
|
|
|
|
type Good struct {
|
|
ID int64
|
|
ProductID int64
|
|
Comment string
|
|
}
|
|
|
|
func init() {
|
|
database.AddModel(&Good{})
|
|
}
|