From e5831893212ed453ff3b9997c46e214dc38c4efe Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 6 Aug 2026 17:18:50 +0800 Subject: [PATCH] fix(pricing): 1 pricing_program + 2 pricing_program_timing for MiniMax-H3 --- sql/minimax_pricing.sql | 42 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 sql/minimax_pricing.sql diff --git a/sql/minimax_pricing.sql b/sql/minimax_pricing.sql new file mode 100644 index 0000000..e03bccf --- /dev/null +++ b/sql/minimax_pricing.sql @@ -0,0 +1,42 @@ +-- ============================================================ +-- MiniMax-H3 — 定价记录(修正版) +-- 1个 pricing_program + 2个 pricing_program_timing +-- ============================================================ + +-- === pricing_program (1条) === +INSERT IGNORE INTO pricing_program (id, name, ownerid, providerid, pricing_belong, description) VALUES ( + 'minimax_h3', + 'MiniMax-H3', + 'platform', + 'minimax', + 'provider', + 'MiniMax-H3 视频生成模型,按分辨率计费:2K 0.80元/秒,768P 0.50元/秒' +); + +-- === pricing_program_timing (2条: 2K + 768P) === + +-- 2K: 0.80 元/秒 +INSERT IGNORE INTO pricing_program_timing (id, ppid, name, pricing_data, enabled_date, expired_date) VALUES ( + 'minimax_h3_2k', + 'minimax_h3', + 'MiniMax-H3-2K', + 'resolution: 2K +unit: second +price: 0.80 +currency: CNY', + '2025-01-01', + '9999-12-31' +); + +-- 768P: 0.50 元/秒 +INSERT IGNORE INTO pricing_program_timing (id, ppid, name, pricing_data, enabled_date, expired_date) VALUES ( + 'minimax_h3_768p', + 'minimax_h3', + 'MiniMax-H3-768P', + 'resolution: 768P +unit: second +price: 0.50 +currency: CNY', + '2025-01-01', + '9999-12-31' +);