You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package mq |
|
|
|
import ( |
|
"sig-pub/api/pb" |
|
"sig-pub/pkg/data" |
|
) |
|
|
|
// 交易产品初始化完成通知 |
|
type PublishExchangeTradeInstanceInited struct { |
|
Exchange pb.ExchangeType `json:"exchange"` // 交易所类型 |
|
InstId string `json:"instId"` // 交易产品id |
|
Status data.Status `json:"status"` // 初始化状态结果 |
|
}
|
|
|