Upstream sync
This commit is contained in:
18
models/buyer.go
Normal file
18
models/buyer.go
Normal file
@@ -0,0 +1,18 @@
|
||||
package models
|
||||
|
||||
import "github.com/jinzhu/gorm"
|
||||
|
||||
type Buyer struct {
|
||||
gorm.Model
|
||||
Name string
|
||||
}
|
||||
|
||||
func (Buyer) Update() (bool, error) {
|
||||
return false, nil
|
||||
}
|
||||
func (Buyer) Create() (bool, error) {
|
||||
return false, nil
|
||||
}
|
||||
func (Buyer) Delete() (bool, error) {
|
||||
return false, nil
|
||||
}
|
||||
Reference in New Issue
Block a user