From 990209665838c8613b6f4fd68821f1e4d29225af Mon Sep 17 00:00:00 2001 From: zhouyonggao <1971162852@qq.com> Date: Thu, 18 Dec 2025 14:52:04 +0800 Subject: [PATCH] =?UTF-8?q?fix(api):=20=E8=B0=83=E6=95=B4KEY=E6=89=B9?= =?UTF-8?q?=E6=AC=A1=E5=92=8C=E5=85=91=E6=8D=A2=E7=A0=81=E6=89=B9=E6=AC=A1?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将KEY批次ID字段的Hidden属性设为false,取消隐藏 - 修改KEY批次ID的Label为“KEY批次ID” - 将Code批次ID字段的Hidden属性设为false,取消隐藏 - 修改Code批次ID的Label为“兑换码批次ID” --- server/internal/api/metadata.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/internal/api/metadata.go b/server/internal/api/metadata.go index 3597dfd..bf1c869 100644 --- a/server/internal/api/metadata.go +++ b/server/internal/api/metadata.go @@ -172,8 +172,8 @@ func marketingMetadataTables() []tableInfo { {Key: "order.product_id", Field: "product_id", Label: "商品id", Hidden: true}, {Key: "order.reseller_id", Field: "reseller_id", Label: "所属分销商ID(冗余)", Hidden: true}, {Key: "order.plan_id", Field: "plan_id", Label: "所属营销计划ID(冗余)", Hidden: true}, - {Key: "order.key_batch_id", Field: "key_batch_id", Label: "所属KEY批次ID(冗余)", Hidden: true}, - {Key: "order.code_batch_id", Field: "code_batch_id", Label: "Code批次ID(冗余)", Hidden: true}, + {Key: "order.key_batch_id", Field: "key_batch_id", Label: "KEY批次ID", Hidden: false}, + {Key: "order.code_batch_id", Field: "code_batch_id", Label: "兑换码批次ID", Hidden: false}, {Key: "order.contract_price", Field: "contract_price", Label: "合同单价", Hidden: false}, {Key: "order.total", Field: "total", Label: "总价", Hidden: false}, {Key: "order.num", Field: "num", Label: "购买数量", Hidden: false},