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.
12 lines
433 B
12 lines
433 B
package args |
|
|
|
type UpdateTradeInstanceStatusArg struct { |
|
InstId string `json:"InstId"` // 交易产品id |
|
Status int32 `json:"Status"` // 0禁用,1正常,4删除 |
|
} |
|
|
|
type UpdateTradeInstanceExchangeStatusArg struct { |
|
ExchangeInstId string `json:"ExchangeInstId"` // 交易所交易产品id |
|
InstId string `json:"InstId"` // 交易产品id |
|
Status int32 `json:"Status"` // 0禁用,1正常,4删除 |
|
}
|
|
|