15 lines
163 B
Go
15 lines
163 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Plan struct {
|
|
PlanID int64
|
|
PlanDate time.Time
|
|
}
|
|
|
|
func (m *Model) Plans() ([]*Plan, error) {
|
|
return m.SelectPlans()
|
|
}
|