Files
kami_backend/internal/dao/v_1_camel_oil_account.go
danial 15e2426e85 feat(camel_oil): 新增骆驼加油账号管理模块
- 实现账号增删改查接口和逻辑
- 支持账号状态更新及状态历史记录功能
- 提供账号列表、历史和统计信息查询API
- 实现账号轮询机制,支持按使用时间轮询获取账号
- 增加账号登录流程及批量登录功能,集成接码平台和平台API
- 管理账号订单容量,支持容量检查与账号登录触发
- 提供账号池状态统计接口
- 账号历史记录查询支持多种变更类型文本展示
- 密码等敏感信息采用脱敏展示
- 完善日志记录和错误处理机制,保证业务稳定运行
2025-11-21 00:49:50 +08:00

23 lines
775 B
Go

// =================================================================================
// This file is auto-generated by the GoFrame CLI tool. You may modify it as needed.
// =================================================================================
package dao
import (
"kami/internal/dao/internal"
)
// v1CamelOilAccountDao is the data access object for the table camel_oil_account.
// You can define custom methods on it to extend its functionality as needed.
type v1CamelOilAccountDao struct {
*internal.V1CamelOilAccountDao
}
var (
// V1CamelOilAccount is a globally accessible object for table camel_oil_account operations.
V1CamelOilAccount = v1CamelOilAccountDao{internal.NewV1CamelOilAccountDao()}
)
// Add your custom methods and functionality below.