11 lines
150 B
Go
11 lines
150 B
Go
|
|
package models
|
||
|
|
|
||
|
|
type MockPosition struct {
|
||
|
|
gorm.Model
|
||
|
|
Code string
|
||
|
|
OpenPrice float64
|
||
|
|
ClosePrice float64
|
||
|
|
Pnl float64
|
||
|
|
PnlRate float64
|
||
|
|
Status int
|
||
|
|
}
|