AI-Funding / AI_Funding_BE

0 stars 1 forks source link

Feature/#16거래내역service구현 #51

Closed JeonHyerim86 closed 2 years ago

JeonHyerim86 commented 2 years ago

거래 내역 관련 Service를 구현했습니다. 또한 해당 Service와 Controller를 매핑시켜주는 작업을 진행하였습니다.

POST 요청

{
    "customer_info_id" : "1",
    "login_type" : "00"
}

넘겨주는 정보

{
    "trade_history" : [
        {
            "stock_name" : "종목 이름",
            "trade_date" : "거래 날짜",
            "total_price" : "거래 금액",
            "trade_type" : "거래 종류",
            "trade_amount" : "거래 수량",
            "current_price" : "단가",
            "trade_price" : "매수/도 가"
        }
    ]
}