fix(api): 调整KEY批次和兑换码批次显示状态

- 将KEY批次ID字段的Hidden属性设为false,取消隐藏
- 修改KEY批次ID的Label为“KEY批次ID”
- 将Code批次ID字段的Hidden属性设为false,取消隐藏
- 修改Code批次ID的Label为“兑换码批次ID”
This commit is contained in:
zhouyonggao 2025-12-18 14:52:04 +08:00
parent 7bcb5deb0f
commit 9902096658
1 changed files with 2 additions and 2 deletions

View File

@ -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},