Files
lic/front-end/app/data/mock/concorrentes.ts
2026-03-14 10:34:38 -03:00

28 lines
832 B
TypeScript

import type { Concorrente } from '~/types'
export const concorrentes: Concorrente[] = [
{
id: '1', cnpj: '12.345.678/0001-90', nome: 'TechGov Soluções Ltda',
totalDisputas: 8, totalVitorias: 3,
historicoDisputas: [
{ editalId: '1', venceu: false, valor: 820000 },
{ editalId: '5', venceu: true, valor: 1250000 },
],
},
{
id: '2', cnpj: '98.765.432/0001-10', nome: 'InfoPública Tecnologia S.A.',
totalDisputas: 12, totalVitorias: 5,
historicoDisputas: [
{ editalId: '1', venceu: false, valor: 830000 },
{ editalId: '8', venceu: true, valor: 910000 },
],
},
{
id: '3', cnpj: '11.222.333/0001-44', nome: 'GovTech Brasil Ltda',
totalDisputas: 6, totalVitorias: 2,
historicoDisputas: [
{ editalId: '3', venceu: false, valor: 415000 },
],
},
]