add new Nature method to Record interface

This commit is contained in:
2025-11-20 19:26:08 +00:00
parent 1106705eb2
commit b4b12ad625
4 changed files with 104 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ import (
type Record interface {
Symbol() string
Nature() string
BrokerCountry() int64
AssetCountry() int64
Side() Side
@@ -29,6 +30,7 @@ type RecordReader interface {
type ReportItem struct {
Symbol string
Nature string
BrokerCountry int64
AssetCountry int64
BuyValue decimal.Decimal