Files

10 lines
379 B
Go
Raw Permalink Normal View History

2026-04-02 11:51:44 +08:00
package public
// PostgreSQL表名常量
const (
2026-05-29 18:39:32 +08:00
ApiInterfaceTable = "api_interface" // 接口管理表
DatasourcePlatformTable = "api_datasource_platform" // 数据源平台表
SyncTaskLogTable = "sync_task_log" // 同步任务日志表
SyncTrackerTable = "sync_tracker" // 同步跟踪表(增量同步时间记录)
2026-04-02 11:51:44 +08:00
)