refactor(metadata): 更新立减金领取时间字段的可见性以满足业务需求

- 将立减金领取时间字段标记为隐藏,以符合新的业务逻辑
- 确保字段的可见性与业务需求一致,提升代码可读性
This commit is contained in:
zhouyonggao 2025-12-17 17:46:13 +08:00
parent 7dee3ea9cf
commit 0fe7e4d963
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ func marketingMetadataTables() []tableInfo {
{Key: "order_voucher.channel_user_id", Field: "channel_user_id", Label: "充值账号", Hidden: false},
{Key: "order_voucher.channel_voucher_id", Field: "channel_voucher_id", Label: "立减金ID", Hidden: false},
{Key: "order_voucher.rule", Field: "rule", Label: "立减金规则", Hidden: true},
{Key: "order_voucher.grant_time", Field: "grant_time", Label: "立减金领取时间", Hidden: false},
{Key: "order_voucher.grant_time", Field: "grant_time", Label: "立减金领取时间", Hidden: true},
{Key: "order_voucher.status", Field: "status", Label: "立减金状态", Hidden: false},
{Key: "order_voucher.usage_time", Field: "usage_time", Label: "核销时间", Hidden: false},
{Key: "order_voucher.refund_time", Field: "refund_time", Label: "退款时间", Hidden: true},