quota-log.prisma 444 B

12345678910111213
  1. model QuotaLog {
  2. id Int @id @default(autoincrement())
  3. username String
  4. opUsername String @map("op_username")
  5. amount BigInt /// 操作额度
  6. isInc Boolean @map("is_inc") /// 是否增加额度
  7. quota BigInt /// 变更后额度
  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. }