From 106623a2f7b07831c91ea9cce67f9314ed274043 Mon Sep 17 00:00:00 2001 From: zhouyonggao <1971162852@qq.com> Date: Thu, 18 Dec 2025 16:45:09 +0800 Subject: [PATCH] =?UTF-8?q?fix(schema):=20=E4=BF=AE=E6=AD=A3=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E5=AD=97=E6=AE=B5=E6=8F=8F=E8=BF=B0=E5=8F=8A=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E9=83=A8=E5=88=86=E5=AD=97=E6=AE=B5=E6=A0=87=E7=AD=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将资金订单号字段描述改为转账订单号 - 新增立减金渠道立减金批次号字段标签 - 新增发券账号字段标签 - 新增未核销过期时间字段标签 --- server/internal/schema/fields.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server/internal/schema/fields.go b/server/internal/schema/fields.go index f0c6fea..841484f 100644 --- a/server/internal/schema/fields.go +++ b/server/internal/schema/fields.go @@ -82,7 +82,7 @@ func AllLabels() map[string]string { "order_cash.success_time": "成功时间", "order_cash.cash_packet_id": "红包ID", "order_cash.channel_order_id": "渠道订单号", - "order_cash.pay_fund_order_id": "资金订单号", + "order_cash.pay_fund_order_id": "转账订单号", "order_cash.cash_id": "红包规则ID", "order_cash.amount": "红包额度", "order_cash.activity_id": "活动ID", @@ -98,8 +98,10 @@ func AllLabels() map[string]string { "order_cash.is_confirm": "是否确认", "order_voucher.channel": "立减金订单.渠道", "order_voucher.channel_activity_id": "渠道立减金批次", + "order_voucher.channel_batch_no": "渠道立减金批次号", "order_voucher.channel_voucher_id": "渠道立减金ID", "order_voucher.channel_user_id": "渠道用户ID", + "order_voucher.account": "发券账号", "order_voucher.status": "立减金状态", "order_voucher.receive_mode": "领取方式", "order_voucher.grant_time": "领取时间", @@ -107,6 +109,7 @@ func AllLabels() map[string]string { "order_voucher.refund_time": "退款时间", "order_voucher.status_modify_time": "状态更新时间", "order_voucher.overdue_time": "过期时间", + "order_voucher.expire_time": "未核销过期时间", "order_voucher.refund_amount": "退款金额", "order_voucher.official_price": "立减金订单.官方价", "order_voucher.account_no": "账户号",