sys-providerVideoSync.prisma 397 B

123456789101112
  1. model SysProviderVideoSync {
  2. id String @id @map("_id") @default(auto()) @db.ObjectId
  3. providerCode String
  4. providerVideoId String
  5. videoMediaId String
  6. lastProviderUpdatedAt BigInt @db.Long
  7. lastSyncedAt BigInt @db.Long
  8. syncStatus Int @default(0) @db.Int
  9. lastError String?
  10. @@map("sys_providerVideoSync")
  11. }