From f96e506a19cc12456d9b7a527c95000ac14f9efa Mon Sep 17 00:00:00 2001 From: huyufei Date: Mon, 17 Jun 2024 19:10:53 +0800 Subject: [PATCH] =?UTF-8?q?update:=20=E5=AE=8C=E5=96=84=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E6=89=93=E5=8D=B0=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: huyufei --- .../GuruCore/Runtime/IPM/Scripts/ResponseData/OrderResponse.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Runtime/GuruCore/Runtime/IPM/Scripts/ResponseData/OrderResponse.cs b/Runtime/GuruCore/Runtime/IPM/Scripts/ResponseData/OrderResponse.cs index 03ef3f2..046193d 100644 --- a/Runtime/GuruCore/Runtime/IPM/Scripts/ResponseData/OrderResponse.cs +++ b/Runtime/GuruCore/Runtime/IPM/Scripts/ResponseData/OrderResponse.cs @@ -7,10 +7,11 @@ namespace Guru { public double usdPrice; public bool test; + public string state; public override string ToString() { - return $"{nameof(usdPrice)}: {usdPrice} {nameof(test)}: {test}"; + return $"{nameof(usdPrice)}: {usdPrice} {nameof(test)}: {test} {nameof(state)}: {state}"; } } } \ No newline at end of file