Hub-Api/models/plan.go

15 lines
323 B
Go
Raw Normal View History

2024-05-27 23:06:25 +03:30
package models
import "time"
type Plan struct {
Plan_id uint `gorm:"primaryKey"`
Price uint
Period uint
2024-05-27 23:06:25 +03:30
Partnership bool
PercentageOfOwner uint
Created_at time.Time
Modified_at time.Time
Modified_by string
Is_removed bool `gorm:"default:false"`
}