- 36 files: module structure following module-development-spec - 7 table definitions: users_cache, pricing_cache, llmage_cache, uapi_cache, sync_state, customer_balance, accounting_records - Auth: dapi_auth + uapi_sign - Sync: base_sync + entity-specific sync modules (users/pricing/uapi/llmage) - Cache: LRU cache manager with TTL - API: balance, accounting, users, pricing, health handlers - Config: YAML config loader with env overrides - Utils: HTTP client, crypto helpers
113 lines
2.1 KiB
JSON
113 lines
2.1 KiB
JSON
{
|
|
"summary": [
|
|
{
|
|
"name": "users_cache",
|
|
"title": "用户数据缓存",
|
|
"primary": "id",
|
|
"classification": "cache"
|
|
}
|
|
],
|
|
"fields": [
|
|
{
|
|
"name": "id",
|
|
"type": "VARCHAR(32)",
|
|
"nullable": false,
|
|
"default": "",
|
|
"comment": "主键,对应 users 表 id"
|
|
},
|
|
{
|
|
"name": "username",
|
|
"type": "VARCHAR(128)",
|
|
"nullable": false,
|
|
"default": "",
|
|
"comment": "用户名"
|
|
},
|
|
{
|
|
"name": "orgid",
|
|
"type": "VARCHAR(32)",
|
|
"nullable": true,
|
|
"default": "",
|
|
"comment": "组织ID"
|
|
},
|
|
{
|
|
"name": "orgname",
|
|
"type": "VARCHAR(255)",
|
|
"nullable": true,
|
|
"default": "",
|
|
"comment": "组织名称"
|
|
},
|
|
{
|
|
"name": "email",
|
|
"type": "VARCHAR(128)",
|
|
"nullable": true,
|
|
"default": "",
|
|
"comment": "邮箱"
|
|
},
|
|
{
|
|
"name": "phone",
|
|
"type": "VARCHAR(32)",
|
|
"nullable": true,
|
|
"default": "",
|
|
"comment": "手机号"
|
|
},
|
|
{
|
|
"name": "status",
|
|
"type": "VARCHAR(16)",
|
|
"nullable": false,
|
|
"default": "active",
|
|
"comment": "状态: active/inactive/suspended"
|
|
},
|
|
{
|
|
"name": "created_at",
|
|
"type": "DATETIME",
|
|
"nullable": true,
|
|
"default": null,
|
|
"comment": "创建时间"
|
|
},
|
|
{
|
|
"name": "updated_at",
|
|
"type": "DATETIME",
|
|
"nullable": true,
|
|
"default": null,
|
|
"comment": "更新时间"
|
|
},
|
|
{
|
|
"name": "sync_version",
|
|
"type": "VARCHAR(32)",
|
|
"nullable": true,
|
|
"default": "",
|
|
"comment": "同步版本号"
|
|
},
|
|
{
|
|
"name": "cached_at",
|
|
"type": "DATETIME",
|
|
"nullable": false,
|
|
"default": "CURRENT_TIMESTAMP",
|
|
"comment": "缓存写入时间"
|
|
}
|
|
],
|
|
"idxfields": [
|
|
{
|
|
"name": "idx_username",
|
|
"fields": [
|
|
"username"
|
|
],
|
|
"unique": false
|
|
},
|
|
{
|
|
"name": "idx_orgid",
|
|
"fields": [
|
|
"orgid"
|
|
],
|
|
"unique": false
|
|
},
|
|
{
|
|
"name": "idx_sync_version",
|
|
"fields": [
|
|
"sync_version"
|
|
],
|
|
"unique": false
|
|
}
|
|
],
|
|
"codes": []
|
|
} |