From 9c34250d3e547d11eda6b02035eb6efafb9fc101 Mon Sep 17 00:00:00 2001 From: zhouyonggao <1971162852@qq.com> Date: Thu, 18 Dec 2025 22:51:32 +0800 Subject: [PATCH] =?UTF-8?q?fix(schema):=20=E4=BF=AE=E6=94=B9=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E5=A4=96=E9=83=A8=E4=BA=A4=E6=98=93=E5=8F=B7=E6=A0=87?= =?UTF-8?q?=E7=AD=BE=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将订单字段 "order.out_trade_no" 的标签由“支付流水号”改为“外部交易号” --- server/internal/schema/fields.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/internal/schema/fields.go b/server/internal/schema/fields.go index c9b5af5..d85f4ed 100644 --- a/server/internal/schema/fields.go +++ b/server/internal/schema/fields.go @@ -10,7 +10,7 @@ func AllLabels() map[string]string { "order.order_number": "订单编号", "order.key": "KEY", "order.creator": "创建者ID", - "order.out_trade_no": "支付流水号", + "order.out_trade_no": "外部交易号", "order.type": "订单类型", "order.status": "订单状态", "order.account": "账号",