-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
104 lines (104 loc) · 1.95 KB
/
db.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"rateTable": [
{
"id": 1,
"name": "tabela 1",
"installments": [
{
"id": 1,
"installments": 1,
"installmentInterest": 100,
"installmentValue": 444.00,
"fullValue": 444.00,
"comission": 1.33
},
{
"id": 2,
"installments": 2,
"installmentInterest": 20.5,
"installmentValue": 1338.76,
"fullValue": 2677.51,
"comission": 455.51
},
{
"id": 3,
"installments": 1,
"installmentInterest": 10,
"installmentValue": 22.00,
"fullValue": 224.00,
"comission": 1.33
},
{
"id": 4,
"installments": 2,
"installmentInterest": 20.5,
"installmentValue": 2.76,
"fullValue": 9.51,
"comission": 3.51
}
]
},
{
"id": 2,
"name": "tabela 2",
"installments": [
{
"id": 3,
"installments": 1,
"installmentInterest": 10,
"installmentValue": 22.00,
"fullValue": 224.00,
"comission": 1.33
},
{
"id": 4,
"installments": 2,
"installmentInterest": 20.5,
"installmentValue": 2.76,
"fullValue": 9.51,
"comission": 3.51
}
]
}
],
"client": [
{
"id": 1,
"name": "Teste Cliente",
"phone": "71999999999",
"cpf": "99999999999",
"bank": {
"label": "003 - Banco da Amazonia S.A.",
"accountTypeLabel": "Conta Corrente",
"accountNumber": "378282246310005"
}
},
{
"id": 1,
"name": "Teste Cliente",
"phone": "71222222222",
"cpf": "22222222222",
"bank": {
"label": "003 - Banco da Amazonia S.A.",
"accountTypeLabel": "Conta Corrente",
"accountNumber": "378282246310005"
}
}
],
"solicitation": [
{
"id": 1,
"clientId": 1,
"installmentInterest": 20.5,
"installmentInterestValue": 20.5,
"comission": 5.5,
"comissionValue": 122.21,
"installmentValue": 1338.76,
"cardNumber": "4012001037141112",
"desiredValue": 2222,
"totalLoan": 2677.51,
"installmentId": 4,
"rateTableId": 2
}
]
}