From 877a9e10d3e6f38c2f2f32a90927b28997a56288 Mon Sep 17 00:00:00 2001 From: renzhiyuan <465386466@qq.com> Date: Thu, 3 Apr 2025 10:43:38 +0800 Subject: [PATCH] Refactor: Lowercase struct names in config.go --- config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index 6ef9178..64efc46 100644 --- a/config.go +++ b/config.go @@ -31,7 +31,7 @@ type ( } FormsData struct { - FormBase + formBase FormComponentValues []FormComponentValues `json:"form_component_values"` // 审批表单数据 Finance *Finance `json:"finance"` // 财务模块调用 } @@ -65,7 +65,7 @@ type ( } // 创建OA基础数据 - FormBase struct { + formBase struct { OutTradeNo string `json:"out_trade_no"` // 流水号 OriginatorUserId string `json:"originator_user_id"` // 钉钉申请人id }