15 lines
327 B
Go
15 lines
327 B
Go
|
|
package models
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type Plan struct {
|
||
|
|
Plan_id uint `gorm:"primaryKey"`
|
||
|
|
Price uint
|
||
|
|
Priod time.Time
|
||
|
|
Partnership bool
|
||
|
|
PercentageOfOwner uint
|
||
|
|
Created_at time.Time
|
||
|
|
Modified_at time.Time
|
||
|
|
Modified_by string
|
||
|
|
Is_removed bool `gorm:"default:false"`
|
||
|
|
}
|