12 lines
102 B
Go
12 lines
102 B
Go
|
package model
|
||
|
|
||
|
import (
|
||
|
"gorm.io/gorm"
|
||
|
)
|
||
|
|
||
|
type Page struct {
|
||
|
gorm.Model
|
||
|
Code string
|
||
|
Price uint
|
||
|
}
|