ImSeenOne / multiple-simulated-inheritance-jpa

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

multiple-simulated-inheritance-jpa

Status Response
http://localhost:8080/acquisitions
[
    {
        "id": 1,
        "name": "ertyerty",
        "outcome": {
            "id": 1, 
            "type": "acquisition", 
            "remarks": "ertyerty", 
            "amount": 4568.369 
        }
    }
]
http://localhost:8080/salaries
[
    {
        "id": 1,
        "employee": "ertyerty",
        "outcome": {
            "id": 2,
            "type": "salary",
            "remarks": "ertyerty",
            "amount": 4568.369
        }
    },
    {
        "id": 2,
        "employee": "asdasdertyerty",
        "outcome": {
            "id": 3,
            "type": "salary",
            "remarks": "asdasdertyerty",
            "amount": 4.7689568369E7
        }
    }
]
http://localhost:8080/outcomes
[
    {
        "id": 1,
        "type": "acquisition",
        "remarks": "ertyerty",
        "amount": 4568.369
    },
    {
        "id": 2,
        "type": "salary",
        "remarks": "ertyerty",
        "amount": 4568.369
    },
    {
        "id": 3,
        "type": "salary",
        "remarks": "asdasdertyerty",
        "amount": 4.7689568369E7
    }
]

About


Languages

Language:Java 100.0%