model SysQuotaLog { id String @id @map("_id") @default(auto()) @db.ObjectId username String opUsername String @map("op_username") amount BigInt @db.Long isInc Boolean @map("is_inc") quota BigInt @db.Long remark String? createTime DateTime @default(now()) @map("create_time") updateTime DateTime @default(now()) @updatedAt @map("update_time") @@map("sys_quota_log") }