model QuotaLog { id Int @id @default(autoincrement()) username String opUsername String @map("op_username") amount BigInt /// 操作额度 isInc Boolean @map("is_inc") /// 是否增加额度 quota BigInt /// 变更后额度 remark String? createTime DateTime @default(now()) @map("create_time") updateTime DateTime @default(now()) @updatedAt @map("update_time") @@map("sys_quota_log") }