移除价格倍率结构中的 ModelType 字段

- 在 PriceRate 结构中删除 ModelType 字段,以简化数据结构。
- 优化代码可读性,确保数据模型更加清晰。
This commit is contained in:
wood chen 2025-03-22 09:44:46 +08:00
parent b11cf228e3
commit db16194062

View File

@ -13,7 +13,6 @@ import (
// PriceRate 价格倍率结构 // PriceRate 价格倍率结构
type PriceRate struct { type PriceRate struct {
Model string `json:"model"` Model string `json:"model"`
ModelType string `json:"model_type"`
Type string `json:"type"` Type string `json:"type"`
ChannelType uint `json:"channel_type"` ChannelType uint `json:"channel_type"`
Input float64 `json:"input"` Input float64 `json:"input"`