From 9a525cd8745a24d319f6492720d10365e32fd060 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=92=B1=E7=BA=AF=E5=87=80?= <1113655791@qq.com> Date: Sun, 13 Oct 2024 23:33:11 +0800 Subject: [PATCH] =?UTF-8?q?=E8=83=BD=E9=80=9A=E8=AE=AF=EF=BC=8C=E6=9C=89?= =?UTF-8?q?=E5=93=8D=E5=BA=94=E6=95=B0=E6=8D=AE=EF=BC=8C=E8=BF=98=E6=9C=AA?= =?UTF-8?q?=E8=A7=A3=E6=9E=90=E5=93=8D=E5=BA=94=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client.go | 2 +- model.go | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) delete mode 100644 model.go diff --git a/client.go b/client.go index 6c089ba..9bf9385 100644 --- a/client.go +++ b/client.go @@ -88,7 +88,7 @@ func (this *Client) Connect() error { } // GetSecurityList 获取市场内指定范围内的所有证券代码 -func (this *Client) GetSecurityList() (*SecurityListResp, error) { +func (this *Client) GetSecurityList() (*protocol.SecurityListResp, error) { f := protocol.Frame{ Control: 0x01, diff --git a/model.go b/model.go deleted file mode 100644 index bdad356..0000000 --- a/model.go +++ /dev/null @@ -1,4 +0,0 @@ -package tdx - -type SecurityListResp struct { -}