package models import "gorm.io/gorm" type MockPosition struct { gorm.Model Code string OpenPrice float64 ClosePrice float64 Pnl float64 PnlRate float64 Status int `default:"0"` }