From f0761984b6573355a5ea30271686f7263669f595 Mon Sep 17 00:00:00 2001 From: huangqz Date: Tue, 26 May 2026 11:07:34 +0800 Subject: [PATCH] =?UTF-8?q?mkt:=20=E5=85=AC=E5=8F=B8=E4=B8=BB=E4=BD=93?= =?UTF-8?q?=E5=93=8D=E5=BA=94=E5=AD=97=E6=AE=B5=E8=A1=A5=E5=85=85=E5=BC=80?= =?UTF-8?q?=E7=A5=A8=E4=BA=BA(drawer)=E5=92=8C=E5=A4=87=E6=A1=88=E5=8F=B7(?= =?UTF-8?q?record)=E5=B9=B6=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cursor --- services/mkt/subject.go | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/services/mkt/subject.go b/services/mkt/subject.go index 43af1ef..79c63c5 100644 --- a/services/mkt/subject.go +++ b/services/mkt/subject.go @@ -26,14 +26,16 @@ type SubjectListResponse struct { } type Data struct { - Abbr string `json:"abbr"` - AbbrSign string `json:"abbr_sign"` - Id int `json:"id"` - Name string `json:"name"` - State int `json:"state"` - System string `json:"system"` - Type int `json:"type"` - Uscc string `json:"uscc"` + Id int `json:"id"` // 主体ID + Abbr string `json:"abbr"` // 公司简称 + AbbrSign string `json:"abbr_sign"` // 公司英文简写 + Name string `json:"name"` // 公司名全称 + State int `json:"state"` // 状态:0 使用中,1 已停用 + System string `json:"system"` // 结算体系 + Type int `json:"type"` // 主体类型:0 自有,1 其他 + Record string `json:"record"` // 备案/许可证号 + Uscc string `json:"uscc"` // 统一社会信用代码 + Drawer string `json:"drawer"` // 开票人 } // CreateSubjectListRequest 公司列表请求