sys-quota-log.prisma 428 B

12345678910111213
  1. model SysQuotaLog {
  2. id String @id @map("_id") @default(auto()) @db.ObjectId
  3. username String
  4. opUsername String @map("op_username")
  5. amount BigInt @db.Long
  6. isInc Boolean @map("is_inc")
  7. quota BigInt @db.Long
  8. remark String?
  9. createTime DateTime @default(now()) @map("create_time")
  10. updateTime DateTime @default(now()) @updatedAt @map("update_time")
  11. @@map("sys_quota_log")
  12. }