排班管理、主播管理、直播账号管理

This commit is contained in:
2026-04-17 16:28:31 +08:00
commit adb6da1d70
24 changed files with 1861 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package public
// PostgreSQL表名常量
const (
AnchorTable = "anchor" // 主播表
LiveAccountTable = "live_account" // 直播账号表
ScheduleTable = "schedule" // 排班表
)