| 1234567891011121314151617 |
- model SysCacheSyncAction {
- id String @id @map("_id") @default(auto()) @db.ObjectId
- entityType String
- entityId BigInt? @db.Long
- operation String
- status String
- attempts Int @default(0) @db.Int
- nextAttemptAt BigInt? @db.Long
- lastError String?
- payload Json?
- createdAt BigInt @db.Long
- updatedAt BigInt @db.Long
- @@index([status, nextAttemptAt])
- @@index([entityType, entityId])
- @@map("sys_cacheSyncAction")
- }
|