- 添加 IoT 核心业务表:运营商、IoT 卡、设备、号卡、套餐、订单等 - 添加分佣系统表:分佣规则、分佣记录、运营商结算等 - 添加轮询和流量管理表:轮询配置、流量使用记录等 - 添加财务和系统管理表:佣金提现、换卡申请等 - 实现完整的 GORM 模型和常量定义 - 添加数据库迁移脚本和详细文档 - 集成 OpenSpec 工作流工具(opsx 命令和 skills) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
21 lines
1.1 KiB
Go
21 lines
1.1 KiB
Go
package model
|
|
|
|
import "time"
|
|
|
|
// DataUsageRecord 流量使用记录模型
|
|
// 记录卡的流量历史,支持流量查询和分析
|
|
type DataUsageRecord struct {
|
|
ID uint `gorm:"column:id;primaryKey;comment:流量使用记录ID" json:"id"`
|
|
IotCardID uint `gorm:"column:iot_card_id;type:bigint;not null;comment:IoT卡ID" json:"iot_card_id"`
|
|
DataUsageMB int64 `gorm:"column:data_usage_mb;type:bigint;not null;comment:流量使用量(MB)" json:"data_usage_mb"`
|
|
DataIncreaseMB int64 `gorm:"column:data_increase_mb;type:bigint;default:0;comment:相比上次的增量(MB)" json:"data_increase_mb"`
|
|
CheckTime time.Time `gorm:"column:check_time;not null;comment:检查时间" json:"check_time"`
|
|
Source string `gorm:"column:source;type:varchar(50);default:'polling';comment:数据来源 polling-轮询 manual-手动 gateway-回调" json:"source"`
|
|
CreatedAt time.Time `gorm:"column:created_at;autoCreateTime;comment:创建时间" json:"created_at"`
|
|
}
|
|
|
|
// TableName 指定表名
|
|
func (DataUsageRecord) TableName() string {
|
|
return "data_usage_records"
|
|
}
|